Hi
you need to wait actually for the next update. We are not using most of the woocommerce hooks so that may be an issue with the customization.
As a second option, you can let us know your prefered plugin for this.we will try to help you in it’s configuration.
Thanks
Thank you.
Will the next version have an antispam/bot function for the checkout page? If so is there an estimate when the update will be released?
For now, I’m looking at this plugin, https://ww.wp.xz.cn/plugins/advanced-nocaptcha-recaptcha/
Or
Bypassing a plugin and directly integrating Google’s Invisible Captcha into the files (but I’m failing on where to add the code in which files. (Google API keys are no problem.)
If we could create a “How To Implement” process, other users might benefit. I’m happy to help test.
Hi @newguy321123,
As per your preferred plugin it works around “woocommerce_checkout_after_order_review” hook which we are currently not using in our plugin. So please follow the below process to make it work.
Go to folder “plugins\custom-checkout-layouts-for-woocommerce\WooCommerce\checkout\layouts” and open the layout file based on the layout you are using.
For example if you are using 2-column layout, open file “two-column-layout.php” and go to line no 46 : you will see an action line is called here.
So on line no 47 add “<?php do_action(‘woocommerce_checkout_after_order_review’);?>”
Thanks
Rupinder,
Thank you. 🙂
It works perfectly.