Hi,
The category tags can be removed for every module in particular from this section of the theme panel: http://screencast.com/t/Ke7qKqng
if you want to remove the tags for a particular block and not all blocks of that type, then you can add a custom css class on the row in visual composer and use css to hide the category tags.
Here is an example: http://screencast.com/t/hejLj9Cvv
Then I would use this code to hide the tags for this row only:
.mycustomclass .td-post-category{
display:none!important;
}
As for the tags on category pages, they can be removed by changing the category template style from the per-category settings: http://screencast.com/t/5zTtbSaOU
Thank you!
This code helped me alot as I have a couple standalone pages with blocks on them that I dont want the regular categories to appear sometimes.
Is it possible to custom rename or select a specific category?
for example:
The code you have provided hides the category name altogether. What if I wanted to display only a certain particular category?
.mycustomclass1 .td-post-category{
display:none!important;
}
the reason:
I have an article in two or more categories. Other thsan the home page, The page that the article displays on is a standalone page. the category tag will show the 1st alpha category that the article is listed in.
but since this might be an advertisers page, I need it to show as being located in a particular category.
example:
The post originally is availabe in categories A,B,C
When I display the module block and filter by the category “C” it will show the article but it category tag of “A” because that is what is listed first for the post because it shows categories by alpha.
What if I wanted it to display the category title/tag on the block but show a custom category name?
thanks in advance.
The category tag displayed on modules can be controlled with the primary category setting
– https://forum.tagdiv.com/primary-category/
Each post has a primary category, by default the first one alphabetically, you can choose one manually if needed. The category tag will be the one of the primary category.
The tags cannot be changed dynamically, it will always be the same according to your settings.
Thanks
It does not apply to specific pages, it applies to all pages where a module displays the post. There is no other setting to control the category tag of the post on modules/blocks, except the primary category.
So the post will be represented by the category you set as primary, on all modules. This cannot be changed based on page dynamically.