• Does anyone have a CSS code or can assist.

    I want to remove the category names in the main store pages of the website.
    You will see from the link LINK HERE that it shows the categories above the product name.

    I want them removed. Could you assit?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter sheds

    (@sheds)

    For example I want “Garden Sheds, Power Timber Sheds, Timber Sheds” in Grey above each product name removed.

    .This snippet of CSS will hide everything on your website with a class name of product categories.

    .product-categories {
    display:none;
    }

    This snippet will hide it only on pages where there is a “product loop container”, so should not affect your single product pages

    #tf-product-loop-container .product-categories {
    display:none;
    }
    • This reply was modified 1 year, 10 months ago by pichichi.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Category Names from Store’ is closed to new replies.