Author
|
Message
|
K259
|
Monday 12 June 2006 4:27:05 pm
Insted of this: <title>{$site.title} - {section name=Path loop=$module_result.path}{$Path:item.text}{delimiter} / {/delimiter}{/section}</title>
i want in <head><title>xx</title></head> display something like:
<title>{$site.title} - {$module_result.node.name}</title> or <title>{$site.title} - {$node.name}</title> But none of the two above gives me any results.... :/ the site.title variable is working, but not the variable for the page names I also want to display in the title at top :( Can anyone help me?
|
Pascal von Büren
|
Tuesday 13 June 2006 12:57:13 am
Hi,
maybe you should have a look at http://ez.no/doc/ez_publish/technical_manual/3_6/templates/the_pagelayout/variables_in_pagelayout#module_result, where the available variables in pagelayout are described. There is no such thing as $module_result.node but you can get it this way:
{def $pagelayout_node=fetch(content,node,hash(node_id,$module_result.node_id))}
|
K259
|
Tuesday 13 June 2006 1:04:12 am
Thanks, but how can I get the name of the node?
|
Pascal von Büren
|
Tuesday 13 June 2006 1:08:35 am
After the above just enter:
<title>{$pagelayout_node.name}</title>
|
K259
|
Monday 14 August 2006 7:56:56 am
Hi! This don't work in 3.4.x I only get blank pages when this is added to the template... ...
|
Xavier Dutoit
|
Monday 14 August 2006 10:15:30 am
3.4 ? I know I'm going to piss you off, but I'd suggest to update to a more recent version, as you're going to be on your own with a 3.4 X+
http://www.sydesy.com
|
K259
|
Monday 14 August 2006 10:58:37 am
;) It's no prob. There are new releases every 3. month, so nobody can follow this speed anyway. Check out google, and you'll see how many sites which run 3.4.x
|
Marcin Drozd
|
Monday 14 August 2006 1:05:47 pm
Hi
I think U should use <b>let</b>, not <b>def</b>
Im not sure because I do remember, but there isnt {def} in the 3.4 version of eZp (and no $)
{let pagelayout_node=fetch(...) }
{$pagelayout_node.name} {/let} Does it work??
http://ez-publish.pl
|
K259
|
Monday 28 August 2006 8:29:57 am
Great! It work's..I forgot to remove the $, but everything is ok now :) Thanks!! :)
|