Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • maricate Friend
    #202574

    I installed JEvents, create a calendar, a category and an event.
    I also created a menu to display the monthly calendar.
    When trying to access the page http://192.185.140.15/~armada/eventos , the following error occurs:

    Fatal error: Call to a member function set() on a non-object in /home/…./public_html/plugins/system/t3/t3.php on line 371


    public function onContentPrepare ($context, &$article, &$params, $page = 0) {
    // update params for Article View
    if ($context == 'com_content.article') {
    $app = JFactory::getApplication();
    $tmpl = $app->getTemplate(true);
    if ($tmpl->params->get('link_titles') !== NULL) {
    LINE 371 -> $article->params->set('link_titles', $tmpl->params->get('link_titles'));
    }
    }
    }

    I have no idea how to fix it…
    Could anyone help please?

    jooservices Friend
    #554665

    Hi there,
    Would you mind provide us your site & CPanel access for checking.
    Thank you,
    Viet Vu

    Ninja Lead Moderator
    #554714

    <em>@maricate 452360 wrote:</em><blockquote>I installed JEvents, create a calendar, a category and an event.
    I also created a menu to display the monthly calendar.
    When trying to access the page http://192.185.140.15/~armada/eventos , the following error occurs:

    Fatal error: Call to a member function set() on a non-object in /home/…./public_html/plugins/system/t3/t3.php on line 371


    public function onContentPrepare ($context, &$article, &$params, $page = 0) {
    // update params for Article View
    if ($context == 'com_content.article') {
    $app = JFactory::getApplication();
    $tmpl = $app->getTemplate(true);
    if ($tmpl->params->get('link_titles') !== NULL) {
    LINE 371 -> $article->params->set('link_titles', $tmpl->params->get('link_titles'));
    }
    }
    }

    I have no idea how to fix it…
    Could anyone help please?</blockquote>
    @maricate : You can fix the problem this way

    Open plugins/system/t3/t3.php file

    Find and change

    public function onContentPrepare ($context, &$article, &$params, $page = 0) {
    // update params for Article View
    if ($context == 'com_content.article') {
    $app = JFactory::getApplication();
    $tmpl = $app->getTemplate(true);
    if ($tmpl->params->get('link_titles') !== NULL) {
    $article->params->set('link_titles', $tmpl->params->get('link_titles'));
    }
    }
    }

    To

    public function onContentPrepare ($context, &$article, &$params, $page = 0) {
    // update params for Article View
    if ($context == 'com_content.article') {
    $app = JFactory::getApplication();
    $tmpl = $app->getTemplate(true);
    if ($tmpl->params->get('link_titles') !== NULL) {
    if (isset($article->params) && is_object($article->params)) $article->params->set('link_titles', $tmpl->params->get('link_titles'));
    }
    }
    }

    maricate Friend
    #554745

    <em>@Ninja Lead 452421 wrote:</em><blockquote>@maricate : You can fix the problem this way

    Open plugins/system/t3/t3.php file

    Find and change

    public function onContentPrepare ($context, &$article, &$params, $page = 0) {
    // update params for Article View
    if ($context == 'com_content.article') {
    $app = JFactory::getApplication();
    $tmpl = $app->getTemplate(true);
    if ($tmpl->params->get('link_titles') !== NULL) {
    $article->params->set('link_titles', $tmpl->params->get('link_titles'));
    }
    }
    }

    To

    public function onContentPrepare ($context, &$article, &$params, $page = 0) {
    // update params for Article View
    if ($context == 'com_content.article') {
    $app = JFactory::getApplication();
    $tmpl = $app->getTemplate(true);
    if ($tmpl->params->get('link_titles') !== NULL) {
    if (isset($article->params) && is_object($article->params)) $article->params->set('link_titles', $tmpl->params->get('link_titles'));
    }
    }
    }

    </blockquote>

    Thank you Ninja Lead!
    I follow your instructions and now its fixed and working!
    🙂

Viewing 4 posts - 1 through 4 (of 4 total)

This topic contains 4 replies, has 3 voices, and was last updated by  maricate 9 years, 6 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum