Home Forums WoodMart support forum List View – Change order of Brand name and Display Product Short Description

List View – Change order of Brand name and Display Product Short Description

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

    familyecomm-7680
    Participant

    On Shop page when we select the list view the product listing doesn’t show the brand name and the product title in the right sequence. We would like to display brand name on the first row, product title on the second row and so on. Also, we would like to show the product’s short description just like it shows on the default Woodmart theme.

    Please advise.

    Thanks,

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

    Luke Nielsen
    Keymaster

    Hello,

    1. Here is a custom CSS to change the order for the product list – https://take.ms/tn1XJ

    .product-list-item .wd-product-brands-links {
        order: 1;
    }
    
    .product-list-item .wd-entities-title {
        order: 2;
    }
    
    .product-list-item .price {
        order: 3;
    }
    
    .product-list-item .wd-add-btn {
        order: 4;
    }

    2. Navigate to Layouts -> Single product -> use the Short description element in your layout – https://take.ms/LPrGY

    Kind Regards

    #615733

    familyecomm-7680
    Participant

    The 1st solution worked. Thanks.
    For the 2nd one, I only want the short description shown on the list view on Shop page, not on single product page

    #615967

    Luke Nielsen
    Keymaster

    Hello,

    2. Send me access to the admin panel so I can check the site settings.

    Than you for your time.

    Kind Regards

    #617408

    familyecomm-7680
    Participant

    Credentials provided.

    #617592

    Luke Nielsen
    Keymaster

    Hello,

    It looks like you have hidden it via your custom code – https://take.ms/l1XDs after disabling the custom, use the below one to make the right order that includes the description:

    .product-list-item .wd-product-brands-links {
        order: 1;
    }
    
    .product-list-item .wd-entities-title {
        order: 2;
    }
    
    .product-list-item .price {
        order: 3;
    }
    
    .product-list-item .woocommerce-product-details__short-description {
        order: 4;
    }
    
    .product-list-item .wd-add-btn {
        order: 5;
    }

    Kind Regards

    #621036

    familyecomm-7680
    Participant

    The guy who implemented the theme may have done that. Thanks a lot for your help. This could be considered resolved.

    #621056

    Luke Nielsen
    Keymaster

    Hello,

    Thank you for confirming! I’m glad everything is working as expected now. If you need any further assistance in the future, feel free to reach out.

    Kind Regards

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

The topic ‘List View – Change order of Brand name and Display Product Short Description’ is closed to new replies.