Hallo liebe Community ich versuche gerade die Preise als Grafik auszugeben und es klappt ganz gut, nur das Währungszeichen als grafik wird nicht angezeigt. Das Plugin habe ich hier herunter geladen Your text to link here…. Den code habe ich wie folgt geändert in zeile 87 box_article.tpl: {/if}{$sArticle.price|currency}
in {/if}{price2img price=$sArticle.price}|currency}
die php datei dazu [code]<?php function smarty_function_price2img($params, &$smarty)
{
if(!empty($params[‘price’]))
$price = str_split($params[‘price’]);
else
return NULL;
$style = (!empty($params['style']))?$params['style'].'/':'';
$tpl_path = $smarty->\_tpl\_vars[sConfig][sTEMPLATEPATH].'/templates/hauptordner/frontend/\_resources/images/numbers/'.$style; $path= realpath('./').'/'.$tpl\_path; $ret = ''; foreach($price as $value) { if($value==',' || $value== '.') $value = 'dot'; if(is\_file($path.$value.'.gif')) $ret .= ' ![](templates/hauptordner/frontend/_resources/images/numbers/'.$value.'.gif)'; else return $params['price']; } return $ret; } ?\>[/code] könnt ihr mir helfen wo ich was ändern muss?? Die grafik datei des Euro zeichens ist als EUR.gif gekenntzeichnet.... lg :happy: