I want to do something like this:
{cms_selflink page='80' text='© {custom_copyright} My Business Name'}
which would produce text something like:
© 2004 - 2007 My Business Name
and would link to a page that fully details my copyright statement
BUT, putting a Smarty tag ({custom_copyright}) inside the cms_selflink tag gives a Smarty error.
can this be done? how?
including Smarty tags in a selflink
-
calguy1000
- Support Guru

- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: including Smarty tags in a selflink
{capture assign='junk'}@ {custom_copyright} My Business Name{/capture}
{cms_selflink page='80' test="$junk"}
{cms_selflink page='80' test="$junk"}
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: including Smarty tags in a selflink
I think calguy meant:
{cms_selflink page='80' text="$junk"}
Nullig
{cms_selflink page='80' text="$junk"}
Nullig
Re: including Smarty tags in a selflink
cool - thanks guys!

