Why I don't see my content in the front page, when I set it in /publishing/ settings to get promoted to the front page?
And yes am a newbie ;)

Comments

gtsopour’s picture

Assigned: Unassigned » gtsopour
gtsopour’s picture

Because of the specificity of the Bluemasters theme, the default Drupal front-page operation has been replaced by page--front.tpl.php file. This file defines a layout only with regions which may place any created block you want.

In any case if you want to get promoted articles to the front-page, you should print content somewhere in the file page--front.tpl.php using the following code,

<?php print render($page['content']); ?>

The issue in this case is that the Bluemasters theme does not provide this feature so you'll need extra style code.

A better idea is to create a view block (using views) which will selectpromoted to front-page articles and finally expose this block to a home region.

postscripter’s picture

Status: Active » Closed (works as designed)

I see. Thanks a lot for your help.