Themonic-Support

Forum Replies Created

Viewing 6 posts - 1,481 through 1,486 (of 1,486 total)
  • Author
    Posts
  • 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.

    in reply to: How to extract an excerpt instead of a whole blog #539

    Have you checked by going to WordPress Settings -> Reading
    there is a option
    “For each article in a feed, show Full text or Summary”

    in reply to: How to disable display of author #522

    If 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.

    disable author id on home

    in reply to: How to disable display of author #520

    Hi,

    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>
    in reply to: I need to set authorship in my tag page #518

    If 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 }?>
    in reply to: Where I can able to change last update by link? #516

    Hi Arindam,

    “Last updated” text that is showing on top is not a feature of our theme, please check your installed plugins.

Viewing 6 posts - 1,481 through 1,486 (of 1,486 total)