Page 1 of 1
[solved]Is it possible place an smarty tag into another smarty tag ?
Posted: Sun Sep 09, 2007 11:33 am
by amin30b
Hi
While I installed TruetypeText module it was a good idea for me
if I could display my pages title with using of TruetypeText module .
By default , pages title related tag is {title} .
So I placed this tag instead of it :
{cms_module module="TruetypeText" style="bala" text="{title}"}
I know it`s a silly tag definition but I just tried out my chance .
However I don`t know is there any solution for it or not !
Re: Is it possible place an smarty tag into another smarty tag ?
Posted: Sun Sep 09, 2007 11:42 am
by alby
amin30b wrote:
Hi
While I installed TruetypeText module it was a good idea for me
if I could display my pages title with using of TruetypeText module .
By default , pages title related tag is {title} .
So I placed this tag instead of it :
{cms_module module="TruetypeText" style="bala" text="{title}"}
I know it`s a silly tag definition but I just tried out my chance .
However I don`t know is there any solution for it or not !
Use capture function:
{capture name="title"}{title}{/capture}
{cms_module module="TruetypeText" style="bala" text="$smarty.capture.title"}
Alby
Re: Is it possible place an smarty tag into another smarty tag ?
Posted: Sun Sep 09, 2007 12:03 pm
by amin30b
I used your tag but it doesn`t work truly and this error appears:
string(126) "Smarty error: [in template:20 line 116]: syntax error: $smarty. is an unknown reference (Smarty_Compiler.class.php, line 2126)"
and it shows "capture title" image instead of main title statement .
Re: Is it possible place an smarty tag into another smarty tag ?
Posted: Sun Sep 09, 2007 1:43 pm
by alby
amin30b wrote:
I used your tag but it doesn`t work truly and this error appears:
string(126) "Smarty error: [in template:20 line 116]: syntax error: $smarty. is an unknown reference (Smarty_Compiler.class.php, line 2126)"
and it shows "capture title" image instead of main title statement .
Strange, have you insert exactly without space?
Try with:
{capture name="title" assign="titlepage"}{title}{/capture}
{cms_module module="TruetypeText" style="bala" text="{$titlepage}"}
Alby
Re: Is it possible place an smarty tag into another smarty tag ?
Posted: Sun Sep 09, 2007 3:37 pm
by amin30b
Thanks Alby

Now it works but this is the correct tag :
Code: Select all
{capture name="title" assign="titlepage"}{title}{/capture}
{cms_module module="TruetypeText" style="bala2" text=$titlepage}
Re: Is it possible place an smarty tag into another smarty tag ?
Posted: Sun Sep 09, 2007 4:26 pm
by alby
amin30b wrote:
Thanks Alby

Now it works but this is the correct tag :
Code: Select all
{capture name="title" assign="titlepage"}{title}{/capture}
{cms_module module="TruetypeText" style="bala2" text=$titlepage}
Yes, my mistake
Alby