jamiee89
Forum Replies Created
-
Here is a page with the issue:
I also did not have the woocommerce option, so i have installed version 1.4.1 And i seem to be able to edit the templates. so not sure what the issue is
Do you have any update for this? as this is not working for me with blocksy too.
it was the deferring causing the issue.
I had defer JS on. I have switched to Asynchronously load selected JavaScript files?(i dont really know how this works) and this seems to have resolved it. I have read it is good to defer the files, could there be a way for me to do this. the error i was getting ( i think) was somthing to do with jquery not recognising somthing in the WAPF js file?
yes, but the issus is still there, how would I check this?
It is also the pro/extended version I am using. There are some difference between these and the standard version, as noted by the Devs at blocksy theme.
I do not have this plug-in.
the one I have is:
https://www.ads-software.com/plugins/advanced-product-fields-for-woocommerce/
Jamie
Hi Venkat,
Not sure how to do the first bit, but disabling webp worked, i think. Still testing but for now its working! Thank you
Hi Elliot, there has been no update since i posted it. it still isnt working, so I have removed the login modal and reverted back to standard woo login page.
Forum: Plugins
In reply to: [reCAPTCHA for WooCommerce] Blocksy theme login modalofcourse
https://inframegallery.comForum: Plugins
In reply to: [reCAPTCHA for WooCommerce] Blocksy theme login modalI have tried with the cloudflare plugin too, seems to work better, however I am still getting the double turnstile on the sign up tab (itis showing the turnstile from the login tab too) see attached images.
https://ibb.co/JRkszs7
https://ibb.co/4sD64Ry- This reply was modified 2 years ago by jamiee89.
Forum: Themes and Templates
In reply to: [Blocksy] Pop up with content block no stylesHi Thanks for the quick reply!
This unfortunaely did not work ?? I will post a request via the website ??
JamieHi @codersantosh, here is the plug in https://www.ads-software.com/plugins/block-options/
However in my stupidity I hadn’t realised your plugin has the ability to control visibility for mobile! And in my laziness I didnt want to change my already created blocks (which were edited with the other plugin) however I have come to the conclusion Gutentor is far superior! and have now decided to recreate all my blocks with yours! and I have managed to hide page titles with some simple css
Thank you for the reply anyway.
JamieForum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] move apple/google pay button in checkoutthis is the code i have tried in my child theme function.php
function init() { add_action( 'init', 'remove_stripe_pay_button', 10 ); add_action( 'init', 'add_stripe_pay_button', 10 ); function remove_stripe_pay_button() { remove_action( 'woocommerce_checkout_before_customer_details', [ $this, 'display_payment_request_button_html' ], 1 ); remove_action( 'woocommerce_checkout_before_customer_details', [ $this, 'display_payment_request_button_separator_html' ], 2 ); } function add_stripe_pay_button() { add_action( 'wc_payment_methods payment_methods methods' ,[ $this, 'display_payment_request_button_html' ], 1 ); add_action( 'wc_payment_methods payment_methods methods' ,[ $this, 'display_payment_request_button_separator_html' ], 2 ); } }
I can’t seem to get it to work
- This reply was modified 2 years, 7 months ago by jamiee89.