Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • Adam M Moderator
    #894942

    Hi @willer,

    Please edit the thread (first post), choose Require Help From Staff + Mod/Admin? then provide your site url with temporary admin account there so I can check this matter for you.

    willer Friend
    #894949

    Hello @adam M, I added the access data. Thank you

    Adam M Moderator
    #896351

    Hi @willer,

    Please open file templates/ja_teline_v/html/layouts/joomla/content/blog_style_default_item_title.php and look for this line :

    <h3 itemprop="name">
        <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
            <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
            <?php echo $this->escape($displayData->title); ?></a>
        <?php else : ?>
            <?php echo $this->escape($displayData->title); ?>
        <?php endif; ?>
    </h3>

    then change as below :

    <h1 itemprop="name">
        <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
            <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
            <?php echo $this->escape($displayData->title); ?></a>
        <?php else : ?>
            <?php echo $this->escape($displayData->title); ?>
        <?php endif; ?>
    </h1>
    willer Friend
    #896460

    @adam M thanks,

    i made the change but I noticed that they also increase the headlines in the introductory pages and forms. You ‘can leave them h3 ones? I attach screenshots


    1. FireShot-Screen-Capture-002-I-video-di-Moto-Notizie-www_motonotizie_it_video_html
    2. FireShot-Screen-Capture-003-Moto-Notizie-Linformazione-viaggia-su-due-ruote-www_motonotizie_it
    3. FireShot-Screen-Capture-004-Le-gallerie-fotografiche-di-Moto-Notizie-www_motonotizie_it_foto_html
    4. FireShot-Screen-Capture-005-Eventi-motociclistici-nazionali-ed-internazionali-www_motonotizie_it_eventi_html
    Adam M Moderator
    #896679

    Hi @willer,

    In this case, you will have to duplicate file templates/ja_teline_v/html/layouts/joomla/content/blog_style_default_item_title.php and rename the new file to something like video_style_default_item_title.php.

    In file blog_style_default_item_title.php, we will keep the original code (unchanged) and in file video_style_default_item_title.php, please update as suggested in previous reply.

    Next, open file templates/ja_teline_v/html/layouts/joomla/content/item/video.php and look for this line :

    <?php echo JLayoutHelper::render('joomla.content.blog_style_default_item_title', $item); ?>

    and change as below :

    <?php echo JLayoutHelper::render('joomla.content.video_style_default_item_title', $item); ?>
    willer Friend
    #898401

    Thanks @adam M, problem solved !

    Adam M Moderator
    #898683

    Hi @willer,

    Awesome. Since your problem has been solved, I’m going to close this ticket now.

    Best regards,

    Adam.

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

This topic contains 7 replies, has 2 voices, and was last updated by  Adam M 8 years, 8 months ago.

The topic ‘Seo problems in the video, events and galle section in the template ja Teline V.’ is closed to new replies.