This topic has 10 replies, 2 voices, and was last updated 4 years, 6 months ago ago by Rose Tyler
we want to remove at related products and categorie brand, we only want title price
Hello,
.related-products .products-page-cats,
.products-page-brands {
display: none;
}
Regards
its possible to give me the code for categories and brands page too? thanks
Hello,
Change the previous code to
.products-grid .products-page-brands {
display: none;
}
+ Theme Options > WooCommerce (Shop) > Shop > Products style > Product Content Elements > uncheck “Product categories”
Regards
its possible to have the brand abobe title with bold?
like https://ibb.co/K2StFSy
Hello,
Theme Options > WooCommerce (Shop) > Shop elements > Brands > Show Product Brands On Grid/List > On.
Regards
we want brand be above the title and we want only the brand at products be bold
Here is a custom CSS:
.products-loop .product-details {
display: flex;
flex-direction: column;
}
.products-loop .product-details .product-title {
order: 2;
}
.products-loop .product-details .products-page-brands {
order: 1;
}
.products-loop .product-details .price {
order: 3;
}
Regards
and for change the colour and the size of brand and for title and price
thank you!!!
Change the previous code to – http://prntscr.com/se7qj2
.products-loop .product-details {
display: flex;
flex-direction: column;
}
.products-loop .product-details .product-title {
order: 2;
}
.products-loop .product-details .products-page-brands {
order: 1;
}
.products-loop .product-details .price {
order: 3;
color: red;
font-size: 11px;
}
.products-loop .product-details .product-title a {
color: red;
font-size: 18px;
}
.products-loop .product-details .products-page-brands a {
color: red;
font-size: 18px;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up