This topic has 12 replies, 1 voice, and was last updated 4 years, 3 months ago by Ajay Radadiya.
-
AuthorPosts
-
-
MengGuestHi, I want to make the home page heading invisible. Is there any solution to that?
Thank you. -
Spiracle ThemesGuestHi Meng,
I can’t find Heading in your home background image. You can try this CSS if you want to hide the text section.
.slide-bg-text {
display: none;
}Best Regards
-
MengGuestHi, thanks for your help!
I got another problem. The product display on my shop Page 1 is odd.
Last time I posted the same question it was because I didn’t do the theme update.
I don’t see any updates available now so maybe something else is causing the problem.
Can you help me to fix it? Thanks. -
Spiracle ThemesGuestHi Meng,
This is the product category page and it is showing all the available categories which are having products. Currently, there is no navigation for archive pages that’s why it’s showing all the categories in the same place.
Best Regards
-
MengGuestHi, I changed the setting and that’s why it is showing categories instead of products.
But the display of the categories on the shop page is still odd. Like 3-1-3. (3 categories in the first row one, 1 category in the second row and 3 categories in the third row.)
Is there any solution to this?
Thank you. -
Spiracle ThemesGuestHi Meng,
Check this CSS if it’s working for you or not
.woocommerce-page.columns-3 ul.products li.product,
.woocommerce.columns-3 ul.products li.product {
width: 24%;
}Best Regards
-
MengGuestHi, the code is not working for me.
All the other pages are fine except this one: https://www.0tdesigns.com/category/t-shirts/womens-t-shirts/
Is there any solution to this? Thank you. -
Spiracle ThemesGuestHi Meng,
Try this one
.archive.woocommerce .woocommerce-page.columns-3 ul.products li.product,
.archive.woocommerce .woocommerce.columns-3 ul.products li.product {
width: 29.75%;
}Best Regards
-
MengGuestHi, thank you so much for your help. It worked!
But I have 2 more questions:1. Can I change the product title so that each word begins with a capital letter?
2. Can I increase the number of rows of products shown on the category page? It is 2 rows right now and I want it to show 3 or 4 rows each page.Is there any solution to that?
Thank you for your time. -
Spiracle ThemesGuestHi Meng,
1) You can use the CSS for that
.woocommerce ul.products li.product .woocommerce-loop-product__title {
text-transform: none;
}2) This is a pro version feature. You can also do that by doing a quick search on google. You will find ways to do it.
Best Regards
-
MengGuestHi, thank you for your help so far. I have two more question:
1. Can I change the product title on the single product page so that each word begins with a capital letter?
2. Can I change the URL of ‘return to shop’ button that shows on the on the Cart page when the cart is empty?Thank you.
Kind regards, Meng -
Spiracle ThemesGuestHello Meng,
For the first issue, you can try this CSS
.woocommerce div.product .product_title {
text-transform: none;
}For the second issue, You are using the external plugin (https://wordpress.org/plugins/side-cart-woocommerce/)
You can ask directly to the plugins support forums for this issue.Best Regards
-
Ajay RadadiyaGuestwoocommerce floating cart this also good one and free plugin from wordpress.org
-
-
AuthorPosts