Hi.
I need to change the option in cart below with,
Continue shopping ( should close the side cart banner on the click )
View cart.
Right now it is:
View cart
checkout
This topic has 4 replies, 2 voices, and was last updated 6 days, 18 hours ago ago by Luca Rossi
Hi.
I need to change the option in cart below with,
Continue shopping ( should close the side cart banner on the click )
View cart.
Right now it is:
View cart
checkout
Dear @Plethora,
Thank you for reaching out to us.
Please note that implementing the requested functionality would require extensive custom coding, which falls outside the scope of our standard support services.
For any customizations beyond the default features, we kindly encourage you to submit a request through our Customization Panel at the following link: https://www.8theme.com/account/#etheme_customization_panel. Kindly be aware that such services may incur additional charges.
If you have any further questions or need additional assistance, please do not hesitate to contact us.
Best regards,
The 8Theme Team
can you share the elements? I will run the snippet.
Dear @Plethora,
We hope this message finds you well.
The Cart and Checkout buttons you are referring to are generated by the following WooCommerce hook:
woocommerce_widget_shopping_cart_buttons
This hook utilizes the following functions:
add_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
$has_checkout_button = has_action( 'woocommerce_widget_shopping_cart_buttons', 'etheme_woocommerce_widget_shopping_cart_proceed_to_checkout' );
add_action( 'woocommerce_widget_shopping_cart_buttons', 'etheme_woocommerce_widget_shopping_cart_proceed_to_checkout', $has_checkout_button );
If you wish to modify these buttons, you may do so by using the remove_action function. You can find more information about this function in the official WordPress documentation here:
https://developer.wordpress.org/reference/functions/remove_action/
We hope this information is helpful. Should you have any further questions, please do not hesitate to reach out.
Best regards,
The 8Theme Team
The issue related to '‘Cart Pop-up changes require, go to cart and continue shopping’' has been successfully resolved, and the topic is now closed for further responses