Can I ask how to remove TRACKBACKS from comment post? It is ( Leave a comment - comments - trackbacks) I don't need trackbacks?
Thank You
(10 posts)
(7 voices)
Can I ask how to remove TRACKBACKS from comment post? It is ( Leave a comment - comments - trackbacks) I don't need trackbacks?
Thank You
Hi tap-tap,
open up the "\wp-content\themes\awake\comments.php" file and delete line 50:
<li><a href="#"><?php echo "(" .$count_tb . ") " . $txt_tb; ?></a></li>
Let us know if this worked for you.
Worked like a charm!
How can I remove the trackback option with Awake 2.0? Line 50in the "\wp-content\themes\awake\comments.php" does not exist in Awake 2.0. Please advise. Thank you.
Hi cxxlos,
Go to the theme folder, and open the file "lib/functions/theme.php". Delete the code in line #2157:
<li><a href="#" class=""><?php
printf( _n( '%1$s Trackback', '%1$s Trackback', count( $comments_by_type['pings'] ), MYSITE_TEXTDOMAIN ),
number_format_i18n( count( $comments_by_type['pings'] ) ) );
?></a></li>
Then, delete the code in line #2176:
<div class="blog_tabs_content">
<ol class="commentlist trackbacks_pingbacks">
<?php wp_list_comments( array( 'type' => 'pings', 'callback' => 'mysite_pings_callback' ) ); ?>
</ol>
</div><!-- .blog_tabs_content -->
Try that and let us know the results.
Thank you Ruderic. That worked perfectly.
Ho do I remove the trackbacks in inFocus?
Add this in Dashboard -> your theme -> General Settings -> Custom CSS,
#comments .blog_tabs > li:last-child {
display: none !important;
}
Thanks Elliott - it works.
The last one works to myriad too. Thanks
You must log in to post.