Hi!
I would like to remove the Tags from the social sharing box to under the Source/Via. How can I do that? I mean, what’s the PHP String for it? I know PHP a bit and I will be able to do it my self if I know the string for it. I tried to get tags by using this
get_tags();
But it didn’t worked. Please help me.
Thanks!
Fixed it! Removed this line of code from /includes/modules/module_modifier/td_module_blog.php Line 129
The Code:
$this_post_tags = $this->get_the_tags();
if(!empty($this_post_tags)) {
$wrapper_post_tags = ‘<div class=”td-tags-and-social-wrapper-box ‘ . $closing_class_tags . ‘”> ‘ . $this_post_tags . ‘</div>’; }
Thanks!
Hi,
You can still show the tags on posts, just add this code into the loop-single.php file:
– http://screencast.com/t/1UXn8sTfE
<?php
$closing_c_tags = 'td-tags-and-social-wrapper-box-bottom-line';
$t_post_tags = $td_mod_single->get_the_tags();
if(!empty($t_post_tags)) {
$post_tags_wr = '<div class="td-tags-and-social-wrapper-box ' . $closing_c_tags . '"> ' . $t_post_tags . '</div>';
}
echo $post_tags_wr;
?>
Thank you, Emil G.
