Home Forums WoodMart support forum Insert img after price

Insert img after price

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #329797

    www.cidev.ro
    Participant

    Hi there,

    Our client wants on every product on the shop to insert an img after the price saying:

    100% solid wood

    or a text saying the same thing.

    Is this possible?

    Alternatively, can you suggest how we can achieve this for all the products in the shop underneath the price if it isn’t possible next to the price?

    Thank you!

    #329800

    Hello,

    There is no option in Theme Settings available.

    But you can apply a trick by using the following Custom CSS.

    For single product:

    .single-product h1.product_title.wd-entities-title::after {
        content: "100% solid wood";
        font-size: 15px;
        display: block;
        padding-top: 10px;
    }

    Otherwise, it requires Customizations.

    For the Shop page:

    .product-grid-item .wd-entities-title::after {
        content: "100% solid wood";
        display: block;
        font-size: 13px;
        padding-top: 10px;
    }

    Best Regards

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