Hi

i've a node.tpl custom to overide page.tpl...for a content type; i've assigned a GA functionnality...all works but gallery isnt display in output cause of the node.tpl...which variable i must type to do that ?

something like this :

 <?php print $node->ganame;  ?>

print the GA id..so i would to have the GA content...

thanks

Comments

aiphes’s picture

it's important to me , because actually, the gallery isn't displayed...whats are the variables for node to display gallery assit content in node.tpl...? i dont find them with devel themer..:(

aiphes’s picture

i found this

[gallitems] => array (
$spacing [1] => stdClass (
         )
$spacing [2] => stdClass (
         ) 

so i try this

     /*insertion du contenu du corps de la page*/
      print $node->content['body']['#value'];
       print $node->gallitems[0]['view'];
      

in custom node.tpl
but no change..