Hi,
Love the theme. Just wondering if there's a way to remove the date from displaying in portfolio item posts? (eg. http://www.umitk.com/portfolio-item/human-nature/ )
Many thanks!
Umit K
Hi,
Love the theme. Just wondering if there's a way to remove the date from displaying in portfolio item posts? (eg. http://www.umitk.com/portfolio-item/human-nature/ )
Many thanks!
Umit K
Hey,
make a copy of single.php and rename the copy to single-portfolio.php. Afterwards open up single-portfolio.php and replace following code line:
get_template_part( 'includes/loop', 'index' );
with:
get_template_part( 'includes/loop', 'indexportfolio' );
Afterwards make a copy of loop-index.php and rename the copy to loop-indexportfolio.php. Afterwards open up single-portfolio.php and remove following code lines:
<span class="date">
<span class='day'><?php the_time('d') ?></span>
<span class='month'><?php the_time('M') ?></span>
<span class='year'><?php the_time('Y') ?></span>
</span><!-- end date -->Perfect! Thanks :)
Glad that I could help you :)
You must log in to post.