• Resolved dmeijide

    (@dmeijide)


    Awesome plugin guys.

    Is it possible to add a “Back to shop” button on the Wishlist Page?

    Thank you.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi there

    Thank you, we do our best to deliver best plugin possible 🙂
    Please, try to add the following snippet of code at the end of functions.php file of your theme or child theme

    if ( ! function_exists( 'yith_wcwl_back_to_shop' ) ) {
    	function yith_wcwl_back_to_shop() {
    		?>
    		<a href="<?php echo esc_url( get_permalink( wc_get_page_id( 'shop' ) ) ); ?>" class="button">
    			Back to shop
    		</a>
    		<?php
    	}
    }
    add_action( 'yith_wcwl_after_wishlist', 'yith_wcwl_back_to_shop' );
    
    Thread Starter dmeijide

    (@dmeijide)

    Thank you so much! Works excellent.

    Plugin Author YITHEMES

    (@yithemes)

    Hi again

    We are doing our best to improve our plugins. Our target is to develop and release the best free plugins for WooCommerce, but to achieve this we need your help. Please leave a good review to support us and help our growth 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add “Back to Shop” button on Wishlist page’ is closed to new replies.