• Resolved ethranes

    (@ethranes)


    Hi, I have an issue I’m trying to solve on my site. I don’t want any products or categories to be present on my shop page. But I can’t seem to get the list completely empty.

    If you scroll to the bottom you can see a remaining button for All products with the special offer image, I want this off the front page.

    I have tried to do this with CSS by doing the following

    /*catagory dispear*/
    ul.products li.product.first {
    display:none;}

    This works but then it also hides the first items in the list in my categories page
    https://www.beautyharbourclinic.com/store/product-category/allbrands/
    Which I don’t want to do.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • dougaitken

    (@dougaitken)

    Automattic Happiness Engineer

    Hi @ethranes

    I don’t want any products or categories to be present on my shop page. But I can’t seem to get the list completely empty.

    Can you explain what you are trying to do here, please? The shop page is meant to display products from your store.

    What is the layout or structure you are looking for, please?

    Thanks,

    Thread Starter ethranes

    (@ethranes)

    hi,

    What I’m looking for is on https://www.beautyharbourclinic.com/store/ for there to be no all brands category link at the bottom of the page, I want the product slider and then the footer. no categories shown.

    Plugin Support RK a11n

    (@riaanknoetze)

    If I understand correctly, you’re looking for ONLY the slider to be shown on the “Shop” page – correct?

    While I’m still not clear on why you’d like to show things that way, you could try the following custom CSS in your WordPress settings under Appearance > Customize > Additional CSS:

    
    .post-type-archive .widget_media_image,
    .post-type-archive .widget_text {
      display: none;
    }
    

    Hope it helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove category from shop page’ is closed to new replies.