Can someone tell me how to remove the date from my portfolio posts in Brightbox? Thanks!
How do I remove the date on my portfolio posts in Brightbox?
5 posts from 3 voices-
Posted 11 months ago #
-
Open up includes/loop-index.php and replace following line:
<span class='date-container'><span><?php the_time('d') ?></span><strong><?php the_time('M') ?> <?php the_time('Y') ?></strong></span>with:
<?php if( get_post_type() != 'portfolio' ) { ?> <span class='date-container'><span><?php the_time('d') ?></span><strong><?php the_time('M') ?> <?php the_time('Y') ?></strong></span> <?php } ?>Posted 11 months ago # -
Hello,
Just add this on your custom.css
.date-container { display: none; }Regards,
IsmaelPosted 11 months ago # -
Great! Now is there a way to remove the "comments off" icon that remains? Also, I noticed that when I use the dynamic template on pages or portfolio posts, my sidebar widgets go away and the post becomes full width. Is there a fix for that?
thanks for great support!
-chad
Posted 11 months ago # -
Hi chad,
Just add the following css code:
.comment-container { display: none !important; }Hope this is helpful. :)
Regards,
IsmaelPosted 11 months ago #
Reply
You must log in to post.














