[Resolved] Setting a max character length for product names

Home Forums Support [Resolved] Setting a max character length for product names

Home Forums Support Setting a max character length for product names

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #947636
    Deniz Akay

    Hello,

    Is it possible to set a max character length and a fixed number of lines for products names on shop pages?

    For example with max of 2 lines and 75 character length, a product title like this one:

    Wireless Charger, Popwinds [Ultra
    Slim] 10W Power for iPhone X, 
    iPhone 8/8 Plus,Samsung Galaxy
    S8/S8

    will look like this:

    Wireless Charger, Popwinds [Ultra
    Slim] 10W Power for iPhone X...

    It will allow all product listings have same height…

    Thanks

    #948166
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Tough one. Found this: https://stackoverflow.com/questions/3922739/limit-text-length-to-n-lines-using-css

    Wonder if this will work?:

    h2.woocommerce-loop-product__title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-height: 1.5em;
        max-height: 3em;
    }
    #948192
    Deniz Akay

    It works, thank you! I just added

    height: 2.8em;

    to your code to display sale badge of all products at the same line. (like the first product on screenshot)

    sc:

    aloeverauyelik.com products

    #948388
    Tom
    Lead Developer
    Lead Developer

    Awesome! 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.