I was trying to make a privacy policy page which should be a static content. But when i load the page i have this
Fatal error: Class 'JCommentsContentPluginHelper' not found in /home//public_html/templates//html/com_content/article/default.php on line
286using joomla 1.5.22
<?php
$comments = JPATH_SITE . '/components/com_jcomments/jcomments.php';
if (file_exists($comments) ) :
require_once($comments);
if (JCommentsContentPluginHelper::checkCategory($this->article->catid) && (JCommentsContentPluginHelper::isEnabled($this->article, false) || !JCommentsContentPluginHelper::isDisabled($this->article, false))):
$jcomment_count = JComments::getCommentsCount($this->article->id, 'com_content');
?>
Can somebody help pls