Just that, I need to print inside a node.tpl.php the site slogan separately, apparently is no possible if your not printing it at the page.tpl.php

Comments

VM’s picture

... and what code were you using? copying and pasting from page.tpl.php? if yes, have you tried:

<?php
 print (variable_get('site_slogan', '')); 
?>

as was suggesting for html.tpl.php @ https://www.drupal.org/node/1312272

dfparedes’s picture

Perfect, that's correct.

In node.tpl.php you can't use print $site_slogan;
your solution works!!

Thanks!