20bs
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Slider ID copied when block duplicatedIt doesn’t have to be a group, but seems like if it’s nested inside any block, including columns.
Forum: Plugins
In reply to: [WordPress Slider Block Gutenslider] Slider ID copied when block duplicatedAfter some experimenting, I found that if the slider is in a group, then the slider is exactly copied, including the same gutenslider block ID. If the slider is not grouped, then duplicating or copy/pasting will generate a new block ID for the new block. I’m not sure if this is intentional, but it seems like I should be able to duplicate a slider that is inside a group and have it create a new ID.
I have a group of items that I’ll have to step and repeat multiple times and it’s tedious to ungroup them or create a new slider.
Forum: Plugins
In reply to: [WooCommerce] Auto-updating Woocommerce Plugin when “auto-updates” is OFF?Could it be your host? I know WP Engine is automatically updating these.
Forum: Themes and Templates
In reply to: [Astra] Adding script to Astra child themefor a child theme, you’ll want to use get_stylesheet_directory_uri, that will return the currently active theme directory. template_uri will always return the parent theme directory.
Forum: Plugins
In reply to: [No CAPTCHA reCAPTCHA for WooCommerce] Cannot submit OrderI was able to get this to work by editing the plugin. Not ideal, but it works.
in registration.php, after line 11 add:
// add to checkout add_action('woocommerce_after_checkout_registration_form', array( __CLASS__, 'display_captcha' ));
This will permanently display the captcha after the form on the checkout page. Note that this will get overwritten when the plugin updates, so you may want to put some code or change the plugin version number up high to prevent that or use another plugin to block updates.
I was able to get this to work by editing the plugin. Not ideal, but it works.
in registration.php, after line 11 add:
// add to checkout add_action('woocommerce_after_checkout_registration_form', array( __CLASS__, 'display_captcha' ));
This will permanently display the captcha after the form on the checkout page. Note that this will get overwritten when the plugin updates, so you may want to put some code or change the plugin version number up high to prevent that or use another plugin to block updates.