-
AuthorPosts
-
abdullah canipek Friend
abdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
September 11, 2015 at 7:11 pm #683268Hi,
How can i change “Call Us”, “Mail Us”, “Website” words to Turkish on the contact page?pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 11, 2015 at 7:55 pm #683340Hi 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
1 user says Thank You to pavit for this useful post
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 11, 2015 at 7:55 pm #748298Hi 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
1 user says Thank You to pavit for this useful post
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
September 11, 2015 at 7:58 pm #683341Thanks for your help
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
September 11, 2015 at 7:58 pm #748299Thanks for your help
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 16, 2015 at 6:06 am #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 Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 16, 2015 at 6:06 am #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 Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
September 16, 2015 at 10:15 pm #684956sure,
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
September 16, 2015 at 10:15 pm #748809sure,
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 17, 2015 at 4:57 am #684993Hi
Please edit this file languageen-GBen-GB.mod_jalogin.ini
At the end of file add this
CLOSE="Your Text"
1 user says Thank You to pavit for this useful post
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 17, 2015 at 4:57 am #748844Hi
Please edit this file languageen-GBen-GB.mod_jalogin.ini
At the end of file add this
CLOSE="Your Text"
1 user says Thank You to pavit for this useful post
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
abdullah canipek Friendabdullah canipek
- Join date:
- November 2014
- Posts:
- 133
- Downloads:
- 32
- Uploads:
- 22
- Thanks:
- 52
- Thanked:
- 1 times in 1 posts
-
AuthorPosts
This topic contains 15 replies, has 2 voices, and was last updated by abdullah canipek 9 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum