I would like to add a button that redirects people back to the shop from the single product page. How do I go about doing this?
Hey paso70,
I’m not sure how you are adding your button but wrapping it on code like this should hopefully do the trick:
<a href="#top">Your button goes here</a>
Best regards,
Rikard
I resolved I found this
add_action( ‘woocommerce_before_single_product’, function() {
?>
Menu
<?php
});
thanks and sorry