Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2012-09-25 13:16:03
- debeo
- Member
- Registered: 2012-09-24
- Posts: 16
[Solved] Why is tag nesting advertise everywhere yet it aint working?
I read on many places txp supports tag within tag nesting although even simplest cases don’t work.
If i put only <txp:category /> on my page, it shows normally. And if I put it like this <txp:category_list parent=”<txp:category />” break=“li” wraptag=“ul” /> there’s no list.
Can it be simpler than this and it won’t work.
{Sticked the “Solved” label onto the title. – Uli}
Last edited by uli (2012-09-25 22:27:34)
Offline
Re: [Solved] Why is tag nesting advertise everywhere yet it aint working?
Tags are parsed inside single quotes only:
<txp:category_list parent='<txp:category />' break="li" wraptag="ul" />
Offline
Re: [Solved] Why is tag nesting advertise everywhere yet it aint working?
RTFM :)
Offline
#4 2012-09-25 13:26:25
- debeo
- Member
- Registered: 2012-09-24
- Posts: 16
Re: [Solved] Why is tag nesting advertise everywhere yet it aint working?
Nm:)
Last edited by debeo (2012-09-25 13:32:58)
Offline
Re: [Solved] Why is tag nesting advertise everywhere yet it aint working?
<txp:category_list parent='<txp:category title="1" />' break="li" wraptag="ul" />
is fine, and for more complex cases I follow Julian’s advice.
Offline