gkhaven
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Email verification required at checkoutDisregard my last. Changing that to 0 does nothing other than reload the page
But if you refresh the page it will go to the regular order screen.
I have made a kind of hacky fix for it, but it does auto-refresh I’m sure you can edit as you need.
You will have to add run_only_once_01 to your options table (or whatever you would like to name it I just kept the Guide’s naming convention.)
If you have a high amount of sales you may want to add and delete Option entries per orderadded the following to my functions.php
function Email_Verificaiton_bypass(){ if(!is_wc_endpoint_url('order-received')){ return; // Exit } global $wp; $order_id = absint( $wp->query_vars['order-received'] ); if($order_id != get_option('run_only_once_01') ){ header("Refresh:0"); update_option('run_only_once_01', $order_id ); } } add_action( 'wp_head', 'Email_Verificaiton_bypass' );
This is just a bandaid and not a fix. I just need conversions to be sent to google
Forum: Plugins
In reply to: [WooCommerce] Email verification required at checkoutI did notice that in the checkout url.
key=wc_order_3VwpQXEOW2HoP&utm_nooverride=1&PayerID=WZEUCANS7REN6if you change that 1 to a 0 it goes to the correct order screen
ex.key=wc_order_3VwpQXEOW2HoP&utm_nooverride=0&PayerID=WZEUCANS7REN6
Forum: Plugins
In reply to: [WooCommerce] Email verification required at checkoutThis also did not work for me.
Forum: Plugins
In reply to: [WooCommerce] Email verification required at checkoutI am Also experiencing this same issue
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP Iphones/have to double click to add to CartI have done what is suggested.
I staged a clone of my website.
I Deactivated all plugins, except for Woocommerce.
I tested the add-to-cart buttons on the following themes1.Hello Elementor
Result: Only one Tap required on ipad and Iphone2. Twenty twenty-Two
Result: Only one Tap required on ipad and Iphone3.Twenty Nineteen
Result: Only one Tap required on ipad and IphoneI Enabled Ocean Extra.
I set OceanWP(Main) as the theme.
I tested the add-to-cart buttons
Result: Two taps required on ipad and Iphone, Issue occurred
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP Iphones/have to double click to add to CartForum: Themes and Templates
In reply to: [OceanWP] OceanWP Iphones/have to double click to add to CartI set up a staging environment and switched to a stock theme, the add-to-cart buttons, now work with one-touch on ipad and Iphone. Which seems to make it a theme related issue.
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP Iphones/have to double click to add to CartThe user whether on iPhone or an iPad, whether the device is using safari or chrome, the user has to click the add to cart twice.
Not sure how to fix it or what to modify on the css to allow it to work