cloudcomputingtopics
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide calendar and posted by in postsThanks for your help. I managed to follow your instructions and it now works as I wanted. Again, thanks a lot
Forum: Fixing WordPress
In reply to: Hide calendar and posted by in postsThanks, this seems to be working (using
is-home)Would you know how this could be done similarly for hiding the comments line below posts?
This code is from the index.php – and I think controlling the comment section:
<p class="postmeta"><img src="<?php bloginfo('template_directory'); ?> /images/category.png" align="top" alt="Category" /> Categories: <?php the_category(', ') ?> | <img src="<?php bloginfo('template_directory'); ?>/images/tag.png" align="top" alt="Tag" /> Tags: <?php the_tags('', ', ', ''); ?> | <img src="<?php bloginfo('template_directory'); ?>/images/comments.png" align="top" alt="Comments" /> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> </div> <?php comments_template(); ?>Thanks,
OlafurForum: Fixing WordPress
In reply to: Hide calendar and posted by in postsI am using the Eximius Theme v. 2.0.1 (http://www.dkszone.net/eximius-free-3-column-wordpress-theme)
This code is part of the index.php file – I gather this controls the appearance of the “calendar/date and posted by” line:
<div class="postmeta"><img src="<?php bloginfo('template_directory'); ?>/images/calendar.png" align="center" alt="Calendar" /> <?php the_time('F j, Y'); ?> | Posted by <?php the_author(); ?> <?php edit_post_link('edit', '', ' '); ?></div>If however I remove this – the calendar and posted by will be removed from all posts – and I cannot control when I want to have it appearing.