Home New Guten › Forums › WoodMart support forum › SIDE CART ISSUE
SIDE CART ISSUE
- This topic has 10 replies, 2 voices, and was last updated 2 months ago by
Artem Temos.
-
AuthorPosts
-
June 9, 2025 at 4:15 pm #666208
goncalogamaapParticipantHi, when I update the product quantity on my side cart the google pay button just goes away and I am not understanding what, can you help?
Kind regards.
June 10, 2025 at 9:26 am #666330
Artem TemosKeymasterHello,
Thank you for reaching out to us about the issue with the Google Pay button disappearing when updating the product quantity in the side cart. To troubleshoot this, we recommend that you first disable all third-party plugins to see if there is a conflict causing this behavior.
If the issue persists, please provide us with temporary admin access to your WordPress dashboard. You can securely share the credentials by using the Private content field in your reply. This will allow us to investigate the issue more effectively.
Looking forward to your response.
Regards
June 11, 2025 at 8:30 pm #666855
goncalogamaapParticipantThere you go, also, aside from that please check why the google button is still clickable when the product is out of stock.
Product “Calm Mind ” is out of stock.June 12, 2025 at 10:37 am #666945
Artem TemosKeymasterTry to add the following PHP code snippet to the child theme functions.php file to fix this
add_action('init', function() { if ( class_exists('WC_Stripe_Field_Manager') && isset($_REQUEST['action']) && 'woodmart_update_cart_item' === $_REQUEST['action'] ) { WC_Stripe_Field_Manager::init(); } });
June 12, 2025 at 12:01 pm #666985
goncalogamaapParticipantHello, thanks for your answer, it isnt working as expected, with that code, the button only appears when u refresh now, that part works but now it doesnt appear when you add the first item to cart, it only shows if you add to cart and refresh the page
-
This reply was modified 2 months ago by
goncalogamaap.
June 12, 2025 at 12:10 pm #666993
Artem TemosKeymasterTry to remove the previous code and use this one instead
add_action('init', function() { if ( class_exists('WC_Stripe_Field_Manager') && isset($_REQUEST['action']) && in_array( $_REQUEST['action'], array( 'woodmart_update_cart_item', 'woodmart_ajax_add_to_cart' ) ) ) { WC_Stripe_Field_Manager::init(); } });
June 12, 2025 at 1:00 pm #667017
goncalogamaapParticipantsolved. thanks.
June 12, 2025 at 1:02 pm #667020
goncalogamaapParticipantAlso on the product page, if the product is out of stock the google pay button stays clickable, can you please take a look at that?
Thanks
June 12, 2025 at 2:23 pm #667034
Artem TemosKeymasterCan you please check it works with default theme to see if it is somehow related to WoodMart?
June 12, 2025 at 2:36 pm #667044
goncalogamaapParticipantIt still shows with the hello theme yea, I guess it’s not related to woodmart.
Something that I realised happened is that the sticky bottom add to cart button stopped working.
June 13, 2025 at 10:18 am #667188
Artem TemosKeymasterYou are using Elementor PRO to create a custom layout and some of our features may not work. You need to use our custom layouts instead https://xtemos.com/docs-topic/single-product-page-builder/
-
This reply was modified 2 months ago by
-
AuthorPosts
- You must be logged in to create new topics. Login / Register