Features in front page

January 2013 WordPress Theme
GK User
Tue Apr 02, 2013 12:30 am
I have problems with the frontpage because I can not remove the "Features" that look beneath the headlines, and tried to delete <? Php gk_content_nav ();?> But the problem persists (formerly Older Posts, was now "Feature").
I am grateful for the assistance frontpage remain normal.
Thank you very much.

The site is www.tribunero.com
User avatar
Fresh Boarder

GK User
Tue Apr 02, 2013 8:05 am
Hi,

Are you displaying just the latest posts on the frontpage or are you using some static page / category page on the front?
User avatar
Administrator

GK User
Tue Apr 02, 2013 1:06 pm
I'm using "lastets pots", I tried "page statics" but the front page is without posting.
Attach a picture
User avatar
Fresh Boarder

GK User
Tue Apr 02, 2013 1:52 pm
If you want to remove the "Featured" phrase, you should edit file: layouts/content.post.header.php and remove fragment:

Code: Select all
<?php if(is_sticky()) : ?>
<sup>
   <?php _e( 'Featured', GKTPLNAME ); ?>
</sup>
<?php endif; ?>


or if you want to hide it only on the frontpage, then you should change the mentioned fragment to:

Code: Select all
<?php if(!is_home() && is_sticky()) : ?>
<sup>
   <?php _e( 'Featured', GKTPLNAME ); ?>
</sup>
<?php endif; ?>
User avatar
Administrator

GK User
Wed Apr 03, 2013 1:28 am
I need to delete the old posts that appear below the headlines. If you look at the site you will see that under the old postings are headlines that should not appear there. http://www.tribunero.com
User avatar
Fresh Boarder

GK User
Wed Apr 03, 2013 7:40 am
One moment - so you want to displays latests posts on the frontpage or not? I'm confused now.
User avatar
Administrator

GK User
Wed Apr 03, 2013 2:14 pm
My English is not the best because I speak Spanish. I want to delete "lastets posts" yes. ;)

dziudek wrote:One moment - so you want to displays latests posts on the frontpage or not? I'm confused now.
User avatar
Fresh Boarder

GK User
Wed Apr 03, 2013 3:13 pm
In this case please enable showing the widgets on the mainbody widget area (in the basic settings tab) and move some widget on the mainbody widget area. And of course please assign the original page for the frontpage.
User avatar
Administrator

GK User
Wed Apr 03, 2013 5:00 pm
Excellent! thanks!!!! I am very happy!
User avatar
Fresh Boarder


cron