Add to cart button not working in single product page not opening side panel
-
Add to cart button not working in single product page not opening side panel
But on the other page it’s workin fine.
Hello,
Thank you for reaching out to us!
Is there any chance that you could give me access to the dashboard area so I can have a look at the settings on your website, please?
Kind Regards
Yes possible. How can give you the access.
Hello,
Please update the access to the admin dashboard:
https://monosnap.com/file/AYbFRDa3j4dBtVMS57da9Zo1h9LNIh
Looking forward to hearing back from you!
Kind Regards
How many times I’ve tried.
Very bad customer support
Hello,
The temporary access doesn’t work: https://monosnap.com/file/4gZX5ND3gR4SWD0HK3aP9F4JJqIKsL
Could you please send me normal access via login and password?
I await your response.
Kind Regards
Here is my normal login details. Please solve this problem.
Hello,
If I log in via Go-Daddy, your account has 2-factor protection:
https://monosnap.com/file/m0DPG8H68kLvrLug7cHUiK8WNQEWT2
If I log in via WordPress, it shows that the password is wrong:
https://monosnap.com/file/JyVyusyCIHsDlI2PgG6m1Cszoyk8Wl
So could you please update the password to the admin dashboard?
Kind Regards
It’s too late. How is it call premium support.
Hello,
Sorry for the delay.
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_filter('woocommerce_add_to_cart_redirect', function( $url ) {
if( strpos( $url, 'product-added-to-cart' ) > 0 || strpos( $url, 'product_added_to_cart' ) > 0) {
if ( isset( $_REQUEST['wd-add-to-cart'] ) ) {
return wc_get_checkout_url();
}
return '';
}
return $url;
}, PHP_INT_MAX);
Kind Regards