Hi! I'm so glad on seeing this module, I've been looking for this on drupal a couple of months ago. Just a quick support, how can I create "FEATURED HOMES" I didnt seem to find any when I create a HOME content. Thanks!

Comments

Michael M’s picture

Status: Active » Fixed

Under "Publishing options" select "Sticky at top of lists".

Michael

Mackee’s picture

thanks for the reply. I didn't want the way the node is shown, I mean its either the title or image. I want to show the picture and a little bit on info, like a teaser. Sorry im not a developer, If im going to use this php code below how am to show only the sticky HOME contents. Thanks a lot sir Michael!

$listlength="4";
$result1 = pager_query(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n WHERE n.type = 'home' AND n.status = 1 ORDER BY n.created DESC"), $listlength);
while ($node = db_fetch_object($result1)) {
$output .= node_view(node_load(array('nid' => $node->nid)), 1);
}

print $output;

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.