Bonjour à tous,
Bes expliquait comment intégrer Jcomments dans un template personnalisé avec le code suivant :
<?php
$comments = JPATH_BASE . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
require_once($comments);
echo JComments::showComments($_GET['id'], 'com_content', $title);
}
?>
J'obtiens le message suivant :
Notice: Undefined variable: title in ...
Comment résoudre ce problème ?
Merci