🌍
Français
Comment supprimer l'affichage des mots-clés sous l'image ?
dans picture php supprimer :
// keywords
if ( $page['keywords'] != '' )
{
$vtp->addSession( $handle, 'info_line' );
$vtp->setVar( $handle, 'info_line.name', $lang['keywords'].'' );
$keywords = explode( ',', $page['keywords'] );
$content = '';
$url = './category.php?cat=search&expand='.$_GET['expand'];
$url.= '&mode=OR&search=';
foreach ( $keywords as $i => $keyword ) {
$local_url = add_session_id( $url.$keyword );
if ( $i > 0 ) $content.= ',';
$content.= '<a href="'.$local_url.'">'.$keyword.'</a>';
}
$vtp->setVar( $handle, 'info_line.content', $content );
$vtp->closeSession( $handle, 'info_line' );
}