This topic has 3 replies, 1 voice, and was last updated 5 years, 11 months ago by Spiracle Themes.
-
AuthorPosts
-
-
MengGuestHi, I couldn’t find the place to customize the Related Products on the single product page.
I tried to add upsell products in linked products setting but it didn’t change the products that show in Related Products section, instead, a new section created right above the Related Products section, and it says “You may also like…”
I don’t want to have another section I just want to be able to change the products that shows in the Related Products.
Is there any solution to that?
Thank you. -
Spiracle ThemesGuest -
MengGuestThank you, I have a few more problems:
1. Can I change the product title so that each word begins with a capital letter? (on the single product page as well)
I’ve tried this code but it’s not working for me:.slide-bg-text {
display: none;
}2. Can you help to make the home page heading invisible? (Right now it shows a white dot on the left-hand side of the hero image.)
I’ve tried this code but it’s not working for me:.woocommerce div.product .product_title {
text-transform: none;
}Thank you.
-
Spiracle ThemesGuestHi Meng,
Try this CSS
/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
text-transform: initial;
}
.woocommerce div.product .product_title {
text-transform: initial;
}/* Hiding homepage text */
.slide-bg-section .slide-bg-text {
display: none;
}Copy and paste above in Appearance -> Customize -> Additional CSS
Best Regards
-
-
AuthorPosts