Hi
can you help me deactivate metas in the blogs? We use integrity, and want to remove Author, Date, Category and Comments under the title. I couldnt find something under theme options.
Hi
can you help me deactivate metas in the blogs? We use integrity, and want to remove Author, Date, Category and Comments under the title. I couldnt find something under theme options.
Hi @thegator,
There are no options to hide it in Theme Options for that. We can use the following custom CSS to hide it. Please add it on Theme Options > Global CSS:
.single-post p.p-meta {
display: none;
}
Above suggestion means that you cannot see it but the actual html code is still there on the source code. In case you really want to remove it completely, we need to remove it from the actual template. Since you have a child theme already, all you need to do is copy this file:
wp-content/themes/pro/framework/views/integrity/_content-post-header.php
To this folder on your child theme:
wp-content/themes/pro/framework/views/integrity/_content-post-header.php
You might need to create the folder on your child theme if doesn’t exist yet. Then open the copied file. On line 19, remove this line
<?php x_integrity_entry_meta(); ?>
Hope this helps.
Thanks, helped. Great advice. Do you have an advice how to comment out the tags under the blog?
Hello @thegator,
You can get rid of the tags in the bottom of the post by using this custom css:
.entry-footer.cf {
display: none;
}
Normally, you can just simply turn them off by going to X/Pro > Theme Options > Blog > Content > Post Meta.
And to eliminate the Leave a Reply or the comment box, you can simply disable it.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.