hi folks,
I’m not 100% sure if this topic belongs here,
or whether it has been asked or been covered before,
cause it’s kinda hard to explain.. i basically didn’t know what to google for, so i guess i’ll just go ahead and ask my question while putting my trust in the gods of forum moderation, which will eventually move me in the right spot.
...and might even have an answer to this (or a hint, or a pointer!)
i have a custom entry field (type:“text”,format:“none”) which basically holds the title of my article. i’m building a bilingual site, hence the ‘country_code’-prefix.
this is how i use it in my template:
<span class="comment-headline">
<a href="http://{title_permalink=mydemo/mypage}">{{country_code}_title}</a>
</span>and this is how it renders as HTML:
<span class="comment-headline">
<a href="http://mysite.com/en/index.php/mydemo/mypage/my_article_name">this is my title!</a>
</span>You might notice the additional p-tags, that I most certainly didnot put into the template, nor do i want them in the rendered HTML-output, so where or how can I gain insight in why these extra (superfluous, inappropriate) tags are put there? The ultimate goal is to rule this behaviour out, or at least gain some control over, since this isn’t the first time this has popped up…?
thanx for any help
s.