I tried all the old posts about but without finding the right solution. I had this template working fine before the update where I was capturing the tag with the UDT as I've seen in a old post.
Code: Select all
get_tag
$tagname=$_GET['ctag'];
echo $_GET['ctag'];
Code: Select all
<head>
{process_pagedata}
{capture assign='tagname'}{get}{/capture}
{if !empty($tagname)}
<title>Tag {$tagname} - {sitename}</title
{else}
{capture assign='news'}{get_news}{/capture}
{if $news}
{assign var=tagname value='Notizie Energetiche'}
<title>bla bla bla </title>
{else}
<title>{title} - {sitename}</title>
{metadata}
{capture assign='tagname'}{title}{/capture}
{/if}
{/if}
I tried to set the process_whole page to false as I red but is not working anymore at all.
suggestions?
thanks a ton