Change wording side bar catagory
-
Dear Team
I need to change wording in landing page side bar from Category to my language. “หมวกหมู่สินค้า”
Attachments:
You must be
logged in to view attached files.
Hello,
You can rewrite all theme and plugin texts via PO file in WordPress. Here is a video tutorial that should help you rewrite your website texts with a Loco Translate plugin https://www.youtube.com/watch?v=D3NsDdMzsls&list=PLMw6W4rAaOgKKv0oexGHzpWBg1imvrval&index=3
Best Regards
Thank you bro.
your solution can help me. but i cant find some word in category. “read more”
When i change setting to Thai language, this wording change to “อ่านเพิ่มเติม”
but i cant find both read more and อ่านเพิ่มเติม in green button.
https://snag.gy/GNyXWl.jpg
I need to make border column design side bar category.
https://snag.gy/nLo1K3.jpg
to
https://snag.gy/dBLf54.jpg
when i hover mouse , need to change from white to blue that category.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.widget_product_categories .product-categories li {
border-bottom: 1px solid #dddddd;
border-left:1px solid #dddddd;
border-right:1px solid #dddddd;
padding:0 10px;
}
.widget_product_categories .product-categories li:first-child{
border-top: 1px solid #dddddd;
}
Try to find “Read More” in Woocommerce files
Best Regards
thank you team,
then i need when mouse hover need background category change to transparent blue and font turn to white.
Code please.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.widget_product_categories .product-categories li:hover {
background-color:blue;
}
body .widget_product_categories .product-categories li:hover > a {
color:white;
}
Best Regards