bababoom
Forum Replies Created
-
Forum: Plugins
In reply to: [Material Design for Contact Form 7] Email subscription checkbox (Sendinblue)Hi Angus,
Thx for the code, the mention “subscribe to our newsletter” is displayed but not the checkbox.
Here is where you can test it:
https://repost.fatstep.com/testBest,
SimonForum: Plugins
In reply to: [Material Design for Contact Form 7] Email subscription checkbox (Sendinblue)No I just removed it temporarily, the thing is I don’t even know how to format them in CF7..
How would you write it considered the usual code of my first post?
Best,
SimonForum: Plugins
In reply to: [Material Design for Contact Form 7] Email subscription checkbox (Sendinblue)HiAngus,
Sure, the form in which I’m searching to add it is on that page:
https://repost.fatstep.com/chain-request/
Best,
SimonForum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Some templates not usedOk, I will try before by contacting the theme’s author to see if there is a workaround directly by their theme before trying the technique you’ve sent me, I’m not so comfortable with this tbh.
Best,
SimonForum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Some templates not usedIndeed, it wasn’t the woocommerce that I received..
I’ve deactivated those plugins:
– New user approve
– Front End registration – Contact form 7
– WP mail SMTPI’ve tested by registering through the /wp-login.php form (in WP settings, new user is considered as “customer”)
Weird thing is I still don’t receive the woocommerce email!
I only receive this:Username: username To set your password, visit the following address: mywebsite.com/wp-login.php?action=rp&key=1234567890&login=username> https://mywebsite.com/wp-login.phpForum: Plugins
In reply to: [Kadence WooCommerce Email Designer] Some templates not usedHoy,
It was in plain text but even after turning it into html (or even multipart) the template is not activated for those new account emails.
That being said, it shows correctly now in the customizer, only the mail received are still in plain text.
Simon
Oh, just a “detail”, I use it for Woocommerce.
Hi!
Awesome 🙂
Here is the link of the plugin:
https://wordpress.org/plugins/new-user-approve/Best
Hi Dima,
Indeed your plugin works much better with my configuration, thank you for that!
I just have a little problem since I use WOOF, a product filter that sort products by attributes.
When I filter the products I have the loader spinner that displays but also the old pagination numbers (1 / 2 / 3 / NEXT) and nothing happens.
Would you know why maybe?
Forum: Plugins
In reply to: [WooCommerce] Skip Shipping for Virtual Variable productsHi Mikey,
Indeed, just by removing my multi-step checkout plugin (by RedNumber) the checkout will remove the shipping step..
I told plugin’s author to fix that!
Thanks for your time 🙂
Forum: Plugins
In reply to: [WooCommerce] Skip Shipping for Virtual Variable productsHi @mikeyarce,
That’s what I’ve done, both are checked, but when it’s the only product in the cart, the shipping step is still visible during the checkout.
Note that I’ve added those line of code in functions to remove the unwanted fields (of the billing step) when all the products in the cart are virtual, I don’t think it’s related though since my issue is with the shipping step of the checkout, therefore the shipping step that is still here is empty, customer need to click “NEXT” again:
/** * woo remove fields virtual cart */ add_filter( 'woocommerce_checkout_fields' , 'woo_remove_billing_checkout_fields' ); /** * Remove unwanted checkout fields * * @return $fields array */ function woo_remove_billing_checkout_fields( $fields ) { if( woo_cart_virtual_downloadable_product_only() == true ) { unset($fields['billing']['billing_company']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_country']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_phone']); unset($fields['order']['order_comments']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_company']); unset($fields['billing']['billing_city']); } return $fields; } /** * Check if the cart contains virtual/downloadable product only * * @return bool */ function woo_cart_virtual_downloadable_product_only() { global $woocommerce; // By default, virtual/downloadable product only $virtual_downloadable_products_only = true; // Get all products in cart $products = $woocommerce->cart->get_cart(); // Loop through cart products foreach( $products as $product ) { // Get product ID $product_id = $product['product_id']; // is variation downloadable $is_downloadable = $product['data']->downloadable; // is variation virtual $is_virtual = $product['data']->virtual ; // Update $virtual_downloadable_products_only if product is not virtual or downloadable and exit loop if( $is_virtual == 'no' && $is_downloadable == 'no' ){ $virtual_downloadable_products_only = false; break; } } return $virtual_downloadable_products_only; }Forum: Plugins
In reply to: [Grid/List View for WooCommerce] List view does not work on tags archiveIt’s weird as the author of my theme said: It uses the taxonomy-product_tag.php template file provided by WooCommerce.
Hello,
1- I don’t use widgets. I was referencing to the fade in effect that comes when you click on a product in the list and that appears on the single product pages.
2- thanks for the link, my theme already have infinite scroll, I will check with their team.
Forum: Plugins
In reply to: [Grid/List View for WooCommerce] List view does not work on tags archiveHi!
Thanks for your answer, does the Archive page template for products is the same as the archive page template of posts?
(because I’ve integrated ACF in archive page template for posts)
Hi again,
I managed to avoid the 15px shifting while search is going on.
I have 2 little more concern though:
1- Since I installed your plugin, I have a fade in on my single product pages, I would like to remove it but I don’t know how.
2- I use Infinite Scroll on my website, is there a way to avoid pages 2/3/4..?
(Also, clicking on the next pages does not work, I have a blank pages almost all the time instead).Thank you for the help,
Simon