Akkor félreértettük egymást...
korábban ezt a kódot adtad:
[literal]
<div class="cms-guestbook-entry-posted">
<?php echo ((is_array($_tmp=$this->_tpl_vars['entry']->GetDate())) ? $this->_run_mod_handler('date_format', true, $_tmp, $this->_tpl_vars['dateformat']) : smarty_modifier_date_format($_tmp, $this->_tpl_vars['dateformat'])); ?>
</div>
[/literal]
Én erre írtam, hogy meg kéne nézni, mi a $this->_tpl_vars['dateformat']
Amit legutoljára írtál arra a megoldás a korábban írt elem:
[literal]
<div class="cms-guestbook-entry-header">
<div class="cms-guestbook-entry-posted">
{$entry->GetDate()|date_format:$dateformat}
[/literal]
idézet: "{$entry.date|cms_date_format:"%Y. %B %d."} // szabadon konfigolható megjelenés php szerint"
vagyis a $dateformat helyére tedd a saját configodat. Így fog kinézni:
[literal]
<div class="cms-guestbook-entry-header">
<div class="cms-guestbook-entry-posted">
{$entry->GetDate()|date_format:"%Y. %B %d."}
[/literal]
Ha ezúttal jól értem...