• Resolved pp46

    (@pp46)


    Hello
    I need to remove the default search box on the shop page and I do not need shown results either its not necessary it just doubles the products. Is this possible?

    I added this CSS but it only removes the box and leaves the 11 products visible.
    `.woocommerce .woocommerce-ordering select {
    display: none;
    }
    p.woocommerce-result-count {
    display: none;
    }

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    Hi @pp46 ??

    This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
    ?

    /* Remove extra 11 products from the homepage */
    .home .storefront-sorting ~ .products {
        display: none !important;
    }?
    

    ?
    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    Cheers ??

    Thread Starter pp46

    (@pp46)

    Cheers to you too sir
    Very good, that worked for me just fine.

    Once again thank you for all your very fast and useful answers on this woocommerce forum

    Have a great day

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    You are most welcome ?? !

    Glad to know that it worked great! If you have any further questions, you can start a new thread.

    Have a great day too ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing default search box on shop page and results’ is closed to new replies.