Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • abdullah canipek Friend
    #683268

    Hi,
    How can i change “Call Us”, “Mail Us”, “Website” words to Turkish on the contact page?

    pavit Moderator
    #683340

    Hi there

    Edit this file templatesja_events_iihtmlcom_contactcontactdefault_address_top.php

    <ul class="address-detail dl-horizontal row" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
    <?php if ($this->contact->telephone && $this->params->get('show_telephone')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-phone"></i>
    <span class="contact-telephone" itemprop="telephone">
    <strong>Call Us</strong><?php echo nl2br($this->contact->telephone); ?>
    </span>
    </div>
    </li>
    <?php endif; ?>

    <?php if ($this->contact->email_to && $this->params->get('show_email')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div class="highlight">
    <i class="fa fa-envelope-o"></i>
    <div class="contact-emailto">
    <strong>Mail Us</strong><?php echo $this->contact->email_to; ?>
    </div>
    </div>
    </li>
    <?php endif; ?>

    <?php if ($this->contact->fax && $this->params->get('show_fax')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-print"></i>
    <span class="contact-fax" itemprop="faxNumber">
    <strong>Fax</strong><?php echo nl2br($this->contact->fax); ?>
    </span>
    </div>
    </li>
    <?php endif; ?>
    <?php if ($this->contact->mobile && $this->params->get('show_mobile')) :?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-phone-square"></i>
    <span class="contact-mobile" itemprop="telephone">
    <strong>Call Us</strong><?php echo nl2br($this->contact->mobile); ?>
    </span>
    </div>
    </li>
    <?php endif; ?>
    <?php if ($this->contact->webpage && $this->params->get('show_webpage')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-globe"></i>
    <span class="contact-webpage">
    <strong>Website</strong><a href="<?php echo $this->contact->webpage; ?>" target="_blank" itemprop="url">
    <?php echo $this->contact->webpage; ?></a>
    </span>
    </div>
    </li>
    <?php endif; ?>

    </ul>

    Change text in RED with your text

    pavit Moderator
    #748298

    Hi there

    Edit this file templatesja_events_iihtmlcom_contactcontactdefault_address_top.php

    <ul class="address-detail dl-horizontal row" itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
    <?php if ($this->contact->telephone && $this->params->get('show_telephone')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-phone"></i>
    <span class="contact-telephone" itemprop="telephone">
    <strong>Call Us</strong><?php echo nl2br($this->contact->telephone); ?>
    </span>
    </div>
    </li>
    <?php endif; ?>

    <?php if ($this->contact->email_to && $this->params->get('show_email')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div class="highlight">
    <i class="fa fa-envelope-o"></i>
    <div class="contact-emailto">
    <strong>Mail Us</strong><?php echo $this->contact->email_to; ?>
    </div>
    </div>
    </li>
    <?php endif; ?>

    <?php if ($this->contact->fax && $this->params->get('show_fax')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-print"></i>
    <span class="contact-fax" itemprop="faxNumber">
    <strong>Fax</strong><?php echo nl2br($this->contact->fax); ?>
    </span>
    </div>
    </li>
    <?php endif; ?>
    <?php if ($this->contact->mobile && $this->params->get('show_mobile')) :?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-phone-square"></i>
    <span class="contact-mobile" itemprop="telephone">
    <strong>Call Us</strong><?php echo nl2br($this->contact->mobile); ?>
    </span>
    </div>
    </li>
    <?php endif; ?>
    <?php if ($this->contact->webpage && $this->params->get('show_webpage')) : ?>
    <li class="col-xs-12 col-sm-4">
    <div>
    <i class="fa fa-globe"></i>
    <span class="contact-webpage">
    <strong>Website</strong><a href="<?php echo $this->contact->webpage; ?>" target="_blank" itemprop="url">
    <?php echo $this->contact->webpage; ?></a>
    </span>
    </div>
    </li>
    <?php endif; ?>

    </ul>

    Change text in RED with your text

    abdullah canipek Friend
    #683341

    Thanks for your help

    abdullah canipek Friend
    #748299

    Thanks for your help

    abdullah canipek Friend
    #684220

    I changed this module as i want but “close” button is still “close” so i can not change to Turkish close button.
    How can i change this button? @pavit

    abdullah canipek Friend
    #748684

    I changed this module as i want but “close” button is still “close” so i can not change to Turkish close button.
    How can i change this button? @pavit

    pavit Moderator
    #684294

    <em>@asccanipek 492447 wrote:</em><blockquote>I changed this module as i want but “close” button is still “close” so i can not change to Turkish close button.
    How can i change this button? @pavit</blockquote>

    Could you post a screen shot showing to which close button are you referring exactly ?

    pavit Moderator
    #748712

    <em>@asccanipek 492447 wrote:</em><blockquote>I changed this module as i want but “close” button is still “close” so i can not change to Turkish close button.
    How can i change this button? @pavit</blockquote>

    Could you post a screen shot showing to which close button are you referring exactly ?

    abdullah canipek Friend
    #684956

    sure,

    abdullah canipek Friend
    #748809

    sure,

    pavit Moderator
    #684993

    Hi

    Please edit this file languageen-GBen-GB.mod_jalogin.ini

    At the end of file add this

    CLOSE="Your Text"

    pavit Moderator
    #748844

    Hi

    Please edit this file languageen-GBen-GB.mod_jalogin.ini

    At the end of file add this

    CLOSE="Your Text"

    abdullah canipek Friend
    #686062

    Thank you @pavit

    abdullah canipek Friend
    #748918

    Thank you @pavit

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

This topic contains 15 replies, has 2 voices, and was last updated by  abdullah canipek 8 years, 7 months ago.

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