set_prefilter('picture', 'dlcount_picture_prefilter'); $template->assign( array( 'DOWNLOAD_COUNTER' => $picture['current']['download_counter'], ) ); } function dlcount_picture_prefilter($content, &$smarty) { $search = '{if $display_info.rating_score'; $replace = '
{\'Downloads\'|@translate}
{$DOWNLOAD_COUNTER}
'.$search; $content = str_replace($search, $replace, $content); return $content; } ?>