Hi,
Two issues:
VIEW ALL button - Iwm searching for an option to change text so it will apply website language, but i can not find where/
Slides module top - i want it to switch automatically, but it is static. i can't find option to change it/
Thanks

    eladmarmor

    Hi

    For view all text

    Go to /templates/ja_hotel/acm/news-featured/tmpl/grid.php
    Find this

    <?php if($section_link): ?><a href="<?php echo $section_link; ?>" class="btn btn-border">View all</a><?php endif; ?>

    Change the word View all as per your need .

    Regarding second question it is not clear at all to me could you please explain it in details ?

    Hi,
    Thanks/
    First answer helps,but create second problem:
    It intends to be triple language website/ So i can i configure it for all three languages?
    Second question regards the static situation of slide show. I want slides to swithch automatically every few seconds and not swiped manually by user.
    Thanks

      eladmarmor

      1) View_All multilanguage

      Change the View All text to

      <?php if($section_link): ?><a href="<?php echo $section_link; ?>" class="btn btn-border"><?php echo JText::_('TPL_VIEW_ALL'); ?></a><?php endif; ?>

      Then go to languages->Override -> New -> and add your translation for TPL_VIEW_ALL string for each language file installed

      2) Slideshow

      Edit this file /templates/ja_hotel/acm/slideshow/tmpl/style-1.php and change line 6 as showed below

      <div class="style-1 block-slideshow carousel slide vertical <?php echo $fullScreen; ?>" data-ride="carousel" data-wrap="true" data-interval="2000" id="block-slideshow-<?php echo $module->id; ?>">

      data interval 2000 is referred to the interval , you can change it as you wish

      Regards

      Write a Reply...
      You need to Login to view replies.