Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • liancung Friend
    #165805

    Hi,

    When i change my site slogan text in admin template setting, even though it is effected in computer layout display, it is not effected for my iPhone and handheld devices. In my iPhone, it still displays as “SITE SLOGAN”.

    I believe there some directory file where I can just change the text and get it done. Can anyone help me where to get to the correct files or way to solve it? I appreciate your help.

    Best regards,
    Lian.

    pritam Friend
    #399319

    Hello liancung ,

    To Slogan text changing iPhone and Handheld device

    Find this code at templates/ja_purity_ii/layouts/blocks/iphone/header.php , Here you can change your slogan as per you requirement .

    <?php else:

    $logoText = (trim($this->getParam(‘logoType-text-logoText’))==”) ? $config->sitename : $this->getParam(‘logoType-text-logoText’);

    $sloganText = (trim($this->getParam(‘logoType-text-sloganText’))==”) ? JText::_(‘SITE SLOGAN’) : $this->getParam(‘logoType-text-sloganText’);?>

    <div class=”logo-text”>

    <h1><a href=”index.php” title=”<?php echo $siteName; ?>”><span><?php echo $logoText; ?></span></a></h1>

    <p class=”site-slogan”><?php echo $sloganText;?></p>

    </div>

    <?php endif; ?>

    change the word ‘SITE SLOGAN’ .

    chavan Friend
    #399848

    Hi liancung

    You replace this code in templates/ja_purity_ii/layouts/blocks/handheld/header.php


    $logoText = (trim($this->getParam('logoText'))=='') ? $siteName : $this->getParam('logoText');
    $sloganText = (trim($this->getParam('sloganText'))=='') ? JText::_('SITE SLOGAN') : $this->getParam('sloganText'); ?>

    by code


    $logoText = (trim($this->getParam('logoType-text-logoText'))=='') ? $siteName : $this->getParam('logoType-text-logoText');
    $sloganText = (trim($this->getParam('logoType-text-sloganText'))=='') ? JText::_('SITE SLOGAN') : $this->getParam('logoType-text-sloganText'); ?>

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

This topic contains 3 replies, has 3 voices, and was last updated by  chavan 13 years, 4 months ago.

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