please heelp

[Solved]
scooper, NaN and owr_web - thanks a lot for help!

Code: Select all
{content}
{content}
Code: Select all
{content block="block1"}
{content block="block1"}
Code: Select all
{content block="title"}
first useTake a look in your template and check the {content... } tags.
How often are they used and what params are used?
Code: Select all
<head>
{capture assign='captured_content'}{content}{/capture}
{if isset($detail_title)}
<title>{sitename} :: {$detail_title}</title>
{else}
<title>{sitename} :: {title}</title>
{/if}
Code: Select all
{if isset($detail_title)}
<h1>{$detail_title}</h1>
{else}
<h1>{title} {$detail_title}</h1>
{/if}
{content}
In this code you call {content} first time (you capture it to the variable $captured_content)ilia3d wrote:Code: Select all
<head> {capture assign='captured_content'}{content}{/capture} {if isset($detail_title)} <title>{sitename} :: {$detail_title}</title> {else} <title>{sitename} :: {title}</title> {/if}
Here you have the {content} the second time, this you have to change toilia3d wrote:Code: Select all
{if isset($detail_title)} <h1>{$detail_title}</h1> {else} <h1>{title} {$detail_title}</h1> {/if} {content}
Code: Select all
{if isset($detail_title)}
<h1>{$detail_title}</h1>
{else}
<h1>{title} {$detail_title}</h1>
{/if}
{$captured_content}