List View – Change order of Brand name and Display Product Short Description
-
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.
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
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
Hello,
2. Send me access to the admin panel so I can check the site settings.
Than you for your time.
Kind Regards
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
The guy who implemented the theme may have done that. Thanks a lot for your help. This could be considered resolved.
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
The topic ‘List View – Change order of Brand name and Display Product Short Description’ is closed to new replies.