Product Category Modification
-
Hello!
First of all, I want to say that you have created a wonderful theme with all possible facilities and easy to customize from what I have seen so far, although I still have a lot to learn in WordPress, I work on other platforms.
I have a few questions, if possible, about the categories page, I have attached a picture https://i.ibb.co/fpxssns/Screenshot-2023-11-26-195437.png to be able to discuss it:
The first question is, can the size of the category title be changed smaller than that, I mention that in the settings I have it on small.
Second question, can that arrow in front of the title be somehow removed?
The third question, can I somehow modify those Breadcrumbs so that only some of them appear, not the whole menu?
Thank you
Hello,
You can change the “Page title size” to “Small” via Theme Settings -> Page title and the font size also will be smaller.
https://gyazo.com/8b5d2de0547bb412abcf041a0b4fa4b0
02.Add below Custom CSS code to Theme Settings > Custom CSS > Global custom css:
.wd-back-btn.wd-style-icon>a {
display: none;
}
03. There are two kinds of breadcrumbs in our theme: one comes from WooCommerce plugin and one from WoodMart. If you want to customize our theme’s one, you need to edit the file inc/template-tags.php.
As for the WooCommerce, you can try the solution from this article https://kb.yoast.com/kb/add-theme-support-for-yoast-seo-breadcrumbs/
Best Regards.
Thanks for the reply
I managed to do from this https://i.ibb.co/DC5s4b0/1.png to this
https://i.ibb.co/R7NVXd8/2.png with the help of this code
.title-size-small .title {
font-size:35px
}
.page-title {
position:relative;
margin-block:-15px 15px;
padding:10px 5px
}
.main-page-wrapper {
padding-top: 16px;
}
.wd-back-btn.wd-style-icon>a {
display: none;
}
entered in global css although I wanted style.css from woodmart-child but it doesn’t load and I don’t understand why
Hello,
Please add the Custom CSS code to Theme Settings > Custom CSS Area.
Best Regards.