I have the line break parsing enabled for the description field, which works great for the deatails page, but I can't get it to work for the displaylinks.tpl.
The extraneous > indicates you have multiline text within a template conditional. The conditional is ended at the first <br> since conditionals are closed with a >. You'll have to remove the conditional (use <?php if ("{LINKDESCRIPTION}") { ?> if you must test that it's filled).
Comments on line breaks
Beginner
Usergroup: Customer
Joined: Dec 24, 2004
Total Topics: 2
Total Comments: 8
I have the line break parsing enabled for the description field, which works great for the deatails page, but I can't get it to work for the displaylinks.tpl.
Where it should show:
Description: Testing
one
two
It shows:
one
two
>Description: Testing
one
two
Thanks for any suggestions.
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
The extraneous > indicates you have multiline text within a template conditional. The conditional is ended at the first <br> since conditionals are closed with a >. You'll have to remove the conditional (use <?php if ("{LINKDESCRIPTION}") { ?> if you must test that it's filled).
Beginner
Usergroup: Customer
Joined: Dec 24, 2004
Total Topics: 2
Total Comments: 8
Thank you so very much.