Page 1 of 1

[solved] Global content - question

Posted: Thu Nov 29, 2007 8:43 am
by Badyl
Hello

I have a code

Code: Select all

{cms_module module='Album' albums='1,4,5,6'}  
Numers of album (1,4,5,6) i would like to replace over the Global Content Block

but this code doesn't work:

Code: Select all

{cms_module module='Album' albums='{global_content name='Galeria'}'}  
Have you any idea for this ?

Re: Global content - question

Posted: Thu Nov 29, 2007 10:24 am
by alby
Badyl wrote: but this code doesn't work:

Code: Select all

{cms_module module='Album' albums='{global_content name='Galeria'}'}  
Have you any idea for this ?
Use:

Code: Select all

{capture assign=galeria}{global_content name='Galeria'}{/capture}
{cms_module module="Album" albums="$galeria"}
Alby

Re: [solved] Global content - question

Posted: Thu Nov 29, 2007 11:17 am
by Badyl
Thanx works fine :)