Forum Replies Created
- AuthorPosts
- September 3, 2013 at 12:54 pm in reply to: Blog post "Read More" link is not consistent with my title hyperlink #546Themonic-SupportKeymaster
I am sorry, but this forum is for theme support and not for third party plugin support, you should ask these type of questions to the respective plugin author as he may be better assist you on that.
Themonic-SupportKeymasterHave you checked by going to WordPress Settings -> Reading
there is a option
“For each article in a feed, show Full text or Summary”Themonic-SupportKeymasterIf you want to disable Author ID from the Home page it is even more simple, simply flip the “Author ID “switch in the Control Panel -> Main settings.
Themonic-SupportKeymasterHi,
To disable Author, Date and Comments meta bar from single posts remove the following code from content.php
Remove the code starting from line 24 to line 40
<?php if ( is_single() ) : //for date on single page ?> .. ... .. <?php endif; // display meta-date on single page() ?>
If you just want to remove the author:
Remove the following: it’s line 29 to 31
<span class="author"> <?php echo the_author_posts_link(); ?> </span>
Themonic-SupportKeymasterIf you want to use third party authorship plugin simply leave the profile field of Google+ empty.
Another solution would be making use of the following code.
For Category pages
<?php if ( is_category() ) {?> Insert your google_ authorship code here.. <?php }?>
For Tag pages
<?php if ( is_tag() ) {?> Insert your google_ authorship code here.. <?php }?>
Themonic-SupportKeymasterHi Arindam,
“Last updated” text that is showing on top is not a feature of our theme, please check your installed plugins.
- AuthorPosts