Avada › Forums › Community Forum › Remove label Tags: and Categories from meta data
Tagged: categories, author metadata, post date metadata, metadata
-
AuthorPosts
-
Hi, I would like to remove labes Tags: and Categories from Meta data. I would like to keep just names of categories likeapple, orange (without words Tags or Categories in front). I tried to chabge it in function files but doesnt work. How to do that?
im trying to figure this out too. No answer yet.
Either of you have luck yet? I’m trying to do the same thing.
I have the same question. I can control the removal of author and data metadata on the single post page, but cannot see how to turn it off on the categories pages. Any help is much appreciated. I have looked in functions.php and single.php can don’t readily see how this can be turned off. Thanks!
Hi Guys,
have you tried removing the lables in the helpers.php file?wp-content/plugins/fusion-builder/inc/helpers.php
search for Tags: and you will see the line, change it to whatever your target word is.
Hope it helps you out.
Hi h.mohmand, changing text there won’t revert every time there is an update to the Fusion Builder?
Hello everyone – I wanted to do this myself so looked into this.
I had used the Avada Blog Element on a page to show a list of Products (blog posts) but didn’t want the word ‘Categories:’ to show before the product category. In looking at the CSS for the category label, I used some custom CSS in the Avada custom CSS options which then removed it:
.cptt-taxonomy-label {
display:none;
}Try that – it has worked so far for me!
Hallo everyone
I have tried the code:
.cptt-taxonomy-label {
display:none;
}It did not work for me. I have made a new design for single product in Layouts and have used “Meta Elements” but I will not have “Tags:” to stand in front. Does anyone have an idea how to remove “Tags:” Label
In order to hide the label you could set the font size of the parent to 0. Note that due to its hierarchy it will also remove the separators. Make sure to apply a font size to the actual tag link.
.fusion-meta-tb .fusion-tb-tags {
font-size: 0;
}.fusion-meta-tb .fusion-tb-tags a {
font-size: 1rem;
}me funcionó este codigo: show_cats=”no”
Where do you put your code show_cats=”no”?
This works:
/* Remove Category Meta title */
.fusion-tb-categories {
font-size:0px;
}
.fusion-tb-categories a {
font-size:16px;
}
.fusion-tb-categories a::after {
display: inline;
content: “, “;
}
.fusion-tb-categories a:last-of-type::after {
display: none;
}Hi, this works great but then the “,” disappears between the links?
Hi @supershutts
You have active support, and our support team does not provide support via the community forum. If you need assistance, please create a support ticket using the link below, and our support team will gladly assist you.
Click Here To Get Avada Support
Thank you kindly
-
AuthorPosts
- You must be logged in to reply to this topic.