Home Forums WoodMart support forum Product Label

Product Label

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #58188

    ckluong3
    Participant

    Hi,

    Knowing that setting a product on sales, new product and other special status will have a label showing on top of the product image.

    May I know is there an option to hide all the product’s label?

    Please advise, thanks.

    Attachments:
    You must be logged in to view attached files.
    #58206

    Hello,

    Yes, there is the option. Please navigate to Theme settings > shop > Product labels and disable them as per your needs http://prntscr.com/jjf6hu

    Best Regards

    #58426

    ckluong3
    Participant

    Hi,

    I have turn off the label setting, however there is another “Sale” label on the top corner of the product image, May I know how to disable the “Sale” label?

    And there is a Text – “HAY” on the description, May I know how to edit the text?

    Please advise, thanks.

    Attachments:
    You must be logged in to view attached files.
    #58431

    Hello,

    The sale label is not switched of in our theme settings. If you want to hide it please add this Custom CSS to the Theme Settings > Custom CSS:

    .product-image-summary .product-images .labels-rounded .product-label {
    display:none;
    }

    In order to hide brand at all navigate to Theme settings > Shop > Brand > Show brand on the single product page

    If you want to change or remove the brand from the product page, remove or change brand attribute value.

    Best Regards

    #58441

    ckluong3
    Participant

    Hi,

    The code only hide the “sales” label in individual product page. May I know how to hide “sales” label in the product list page as well?

    Please advise, thanks.

    Attachments:
    You must be logged in to view attached files.
    #58458

    Hello,

    Please add this CSS:

    .product-labels {
        display:none;
    }

    Best Regards

    #76512

    Mark
    Participant

    Is it possible to only disable the ‘Sale’ product label but leave the ‘New’ product label through the custom CSS?

    #76526

    Hello,

    Please try this code:

    .product-label.onsale{
    display:none;
    }

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)