• Hi there,

    I have two short questions:
    1) After delete the products in the cart or after a checkout comes the link to the shop page.
    How can I set a link after the cart or checkout to a special product or a special page? The link should not go to the shop page.

    2) How can I hide the filter on the shop page?
    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • 1. There’s a code snippet you can use:

    
    add_filter( 'woocommerce_return_to_shop_redirect', 'custom_empty_cart_url' );
    function custom_empty_cart_url() {
      return 'https://yourdomain.com/your-page/';
    }
    

    Code snippets go in functions.php for your child theme or you can use the “My Custom Functions” plugin.

    2. Could we see the shop page please. What’s your site url?

    Thread Starter A-L-P

    (@alp16)

    Hi @lorro,

    thanks a lot, part1 works great! ??

    You can find the shop page HERE

    Thank you!

    Try this custom css:

    .sort-param-count {
      display:none;
    }
    

    Custom css can be entered at:
    Dashboard > Appearance > Customise > Additional CSS

    Thread Starter A-L-P

    (@alp16)

    Hi @lorro

    it works perfect!

    Thank you so much and have a great day!
    Cheers

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Link to the shop page’ is closed to new replies.