Page 1 of 1

Nested {content}

Posted: Tue Oct 10, 2006 6:43 pm
by patlap
Is it possible to have a {content} tag inside the truetype module.
This way I'll be no longer limited by the lack of option of the truetype menu.

Like this;

Code: Select all

			<div class="IntroDisc">
				{cms_module module="truetypetext" style="container_Stitre" text={content}}</div>

Re: Nested {content}

Posted: Wed Oct 11, 2006 1:03 am
by mahjong
I haven't tried it since I haven't this module installed, but me first guess would be to try:

Code: Select all

{cms_module module="truetypetext" style="container_Stitre" text=$content}

Re: Nested {content}

Posted: Wed Oct 11, 2006 1:48 pm
by patlap
It's not working!
It would be a nice feature with many possibilities.

Re: Nested {content}

Posted: Wed Oct 11, 2006 2:06 pm
by calguy1000
content is a tag not a variable, therefore you have to assign the results of the tag to a variable, and then use it.

Code: Select all

{content assign="stuff"}
{cms_module module="truetypetext" style="container_Stitre" text=$stuff}