Hello Ardeth,
We have tested it at our end and we found no issue as you can see here (https://www.loom.com/share/a55251ee20b04be5afdd7f1268a6cfb3)
May I know if you have checked marketplace plugins with WooCommerce and standard theme (storefront/twenty). Please deactivate all your plugins, except WooCommerce and WCMp + addon. You can then check the flow. If everything is working fine, in order to detect which plugin is causing conflict- please activate each plugin consecutively and check the flow.
Similarly, for theme conflict- please deactivate the current theme and check with standard WooCommerce theme (storefront/twenty) It is suggested to please perform these tests on your staging website and keep us posted with the outcome.
Thread Starter
ardeth
(@ardeth)
Thanks for the reply. When watch the video (https://www.loom.com/share/a55251ee20b04be5afdd7f1268a6cfb3) you have shared in your reply, there’s alse 1-2 seconds delay on form to show up after seleceting the variant.
Is there any way on the code side to make improvement for the form to show in related coding line to set priority and/or carrying the displaying the form line to somewhere on the upper lines of the code?
Thank you.
Hi,
The 1 or 2 second is loading time.
We are using below hook to showing the alert form.
woocommerce_single_product_summary
woocommerce-product-stock-alert/classes/class-woo-product-stock-alert-frontend.php
line no 20 – add_action('woocommerce_single_product_summary', array($this, 'get_alert_form'), 30);
You can remove this hook using remove_action and then add your custom code with add_action using same hook.
Regards,