Can you please help me solve some issues on our website using Manifesto theme? I have 3 issues on our shop page, and attached some screenshots to show you:
- When loading shop page first, the page does not load in properly (first screenshot) , only after refreshing again (second screenshot)
- If our products' title is in 2 lines, the first line goes up into the picture, which is not good (screenshot 3)
- If our products' title is too long, it goes all the way to the price tag, it is not good too (screenshot 4)
If you wish to use longer titles, we recommend increasing the product caption height to accommodate two text rows and also displaying the price under the title to prevent any overlapping issues. Additionally, it is necessary to increase the space between product images on mobile devices to allow sufficient room for the title to align correctly under the image. Below is the code you need to add in the Additional CSS section within Theme Options:
Hello!
Can you please help me solve some issues on our website using Manifesto theme? I have 3 issues on our shop page, and attached some screenshots to show you:
- When loading shop page first, the page does not load in properly (first screenshot) , only after refreshing again (second screenshot)
- If our products' title is in 2 lines, the first line goes up into the picture, which is not good (screenshot 3)
- If our products' title is too long, it goes all the way to the price tag, it is not good too (screenshot 4)
Please help in solving these issues! Thank you!
Attached files: Screenshot_20231127_200526_Chrome.jpg
Screenshot_20231127_200537_Chrome.jpg
Screenshot_20231127_200616_Chrome.jpg
Screenshot_20231127_200912_Chrome.jpg
Hello Franky,
1. try adding the shop page as custom menu link
https://easywpguide.com/wordpress-manual/appearance/updating-the-menu/adding-a-custom-link-menu-item/
Let's try to solve this problem first before moving to the next
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thank you!
As far as it looks now, this solved the first problem!
If you wish to use longer titles, we recommend increasing the product caption height to accommodate two text rows and also displaying the price under the title to prevent any overlapping issues. Additionally, it is necessary to increase the space between product images on mobile devices to allow sufficient room for the title to align correctly under the image. Below is the code you need to add in the Additional CSS section within Theme Options:
.woocommerce ul.products li.product .product-caption {
bottom: -130px;
height: 120px;
}
.woocommerce ul.products li.product .price {
position: relative;
}
@media only screen and (max-width: 479px) {
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
margin: 20px 10px 150px 10px !important;
}
}
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thank you very much! Issues solved!