Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • pedroalarconmendez Friend
    #209076

    Hi,

    I am building a website in spanish. I wanted to know how to change the “Read More” links to spanish.

    I wanted to change these:

    http://imgur.com/r4gB0yn

    Also I wanted to know how to remove the dates in the following content:

    http://imgur.com/6t7mRE2

    Since the webpage is in spanish, the dates do not work if their in english.

    Thanks,
    Pedro Alarcon Mendez

    jooservices Friend
    #578218

    Hi there
    About read me you can translate it via language string.
    Please use search string to locate it.

    If you can’t do it. Please provide your site backend & CPanel access. I’ll help you locate it.

    Thank you,
    Viet Vu

    jooservices Friend
    #644509

    Hi there
    About read me you can translate it via language string.
    Please use search string to locate it.

    If you can’t do it. Please provide your site backend & CPanel access. I’ll help you locate it.

    Thank you,
    Viet Vu

    jooservices Friend
    #743141

    Hi there
    About read me you can translate it via language string.
    Please use search string to locate it.

    If you can’t do it. Please provide your site backend & CPanel access. I’ll help you locate it.

    Thank you,
    Viet Vu

    Ninja Lead Moderator
    #578227

    <em>@pedroalarconmendez 484081 wrote:</em><blockquote>Hi,

    I am building a website in spanish. I wanted to know how to change the “Read More” links to spanish.

    I wanted to change these:

    http://imgur.com/r4gB0yn

    Also I wanted to know how to remove the dates in the following content:

    http://imgur.com/6t7mRE2

    Since the webpage is in spanish, the dates do not work if their in english.

    Thanks,
    Pedro Alarcon Mendez</blockquote>

    + The first image is Module Articles – Category and you can change readmore text from language/en-GB/en-GB.tpl_ja_university_t3.ini file


    TPL_MOD_ARTICLES_CATEGORY_READ_MORE_TITLE ="Read more"

    + The second image is mod_jasidenews module and you can hide date with my solution below

    Open templates/ja_university_t3/css/themes/blue/mod_jasidenews.css file and add new rule


    .ja-slidenews-item .ja-createdate {
    display: none !important;
    }

    Ninja Lead Moderator
    #644518

    <em>@pedroalarconmendez 484081 wrote:</em><blockquote>Hi,

    I am building a website in spanish. I wanted to know how to change the “Read More” links to spanish.

    I wanted to change these:

    http://imgur.com/r4gB0yn

    Also I wanted to know how to remove the dates in the following content:

    http://imgur.com/6t7mRE2

    Since the webpage is in spanish, the dates do not work if their in english.

    Thanks,
    Pedro Alarcon Mendez</blockquote>

    + The first image is Module Articles – Category and you can change readmore text from language/en-GB/en-GB.tpl_ja_university_t3.ini file


    TPL_MOD_ARTICLES_CATEGORY_READ_MORE_TITLE ="Read more"

    + The second image is mod_jasidenews module and you can hide date with my solution below

    Open templates/ja_university_t3/css/themes/blue/mod_jasidenews.css file and add new rule


    .ja-slidenews-item .ja-createdate {
    display: none !important;
    }

    Ninja Lead Moderator
    #743150

    <em>@pedroalarconmendez 484081 wrote:</em><blockquote>Hi,

    I am building a website in spanish. I wanted to know how to change the “Read More” links to spanish.

    I wanted to change these:

    http://imgur.com/r4gB0yn

    Also I wanted to know how to remove the dates in the following content:

    http://imgur.com/6t7mRE2

    Since the webpage is in spanish, the dates do not work if their in english.

    Thanks,
    Pedro Alarcon Mendez</blockquote>

    + The first image is Module Articles – Category and you can change readmore text from language/en-GB/en-GB.tpl_ja_university_t3.ini file


    TPL_MOD_ARTICLES_CATEGORY_READ_MORE_TITLE ="Read more"

    + The second image is mod_jasidenews module and you can hide date with my solution below

    Open templates/ja_university_t3/css/themes/blue/mod_jasidenews.css file and add new rule


    .ja-slidenews-item .ja-createdate {
    display: none !important;
    }

    ericdeumo Friend
    #683620

    Good morning.
    For me, I want to replace “Read More” by an image.
    Please help.
    Regard.

    ericdeumo Friend
    #748378

    Good morning.
    For me, I want to replace “Read More” by an image.
    Please help.
    Regard.

    Ninja Lead Moderator
    #683651

    <em>@ericdeumo 492015 wrote:</em><blockquote>Good morning.
    For me, I want to replace “Read More” by an image.
    Please help.
    Regard.</blockquote>

    Hi,

    This way will help you to change from “Read More” to image

    Open templates/ja_university_t3/html/mod_articles_category/top-col.php file

    find and change

    <?php if ($item->params->get('access-view')== FALSE) :
    echo JText::_('TPL_MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE');
    elseif ($readmore = $item->alternative_readmore) :
    echo $readmore;
    echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit'));
    if ($params->get('show_readmore_title', 0) != 0) :
    echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
    endif;
    elseif ($params->get('show_readmore_title', 0) == 0) :
    echo JText::sprintf('TPL_MOD_ARTICLES_CATEGORY_READ_MORE_TITLE');
    else :

    echo JText::_('TPL_MOD_ARTICLES_CATEGORY_READ_MORE');
    echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit'));
    endif; ?>

    to

    <?php if ($item->params->get('access-view')== FALSE) :
    echo "<img src="/images/readmore.jpg" alt="" title="">";
    elseif ($readmore = $item->alternative_readmore) :
    echo $readmore;
    echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit'));
    if ($params->get('show_readmore_title', 0) != 0) :
    echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
    endif;
    elseif ($params->get('show_readmore_title', 0) == 0) :
    echo "<img src="/images/readmore.jpg" alt="" title="">";
    else :

    echo "<img src="/images/readmore.jpg" alt="" title="">";
    echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit'));
    endif; ?>

    With this is image path /images/readmore.jpg

    Regards

    Ninja Lead Moderator
    #748409

    <em>@ericdeumo 492015 wrote:</em><blockquote>Good morning.
    For me, I want to replace “Read More” by an image.
    Please help.
    Regard.</blockquote>

    Hi,

    This way will help you to change from “Read More” to image

    Open templates/ja_university_t3/html/mod_articles_category/top-col.php file

    find and change

    <?php if ($item->params->get('access-view')== FALSE) :
    echo JText::_('TPL_MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE');
    elseif ($readmore = $item->alternative_readmore) :
    echo $readmore;
    echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit'));
    if ($params->get('show_readmore_title', 0) != 0) :
    echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
    endif;
    elseif ($params->get('show_readmore_title', 0) == 0) :
    echo JText::sprintf('TPL_MOD_ARTICLES_CATEGORY_READ_MORE_TITLE');
    else :

    echo JText::_('TPL_MOD_ARTICLES_CATEGORY_READ_MORE');
    echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit'));
    endif; ?>

    to

    <?php if ($item->params->get('access-view')== FALSE) :
    echo "<img src="/images/readmore.jpg" alt="" title="">";
    elseif ($readmore = $item->alternative_readmore) :
    echo $readmore;
    echo JHtml::_('string.truncate', $item->title, $params->get('readmore_limit'));
    if ($params->get('show_readmore_title', 0) != 0) :
    echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
    endif;
    elseif ($params->get('show_readmore_title', 0) == 0) :
    echo "<img src="/images/readmore.jpg" alt="" title="">";
    else :

    echo "<img src="/images/readmore.jpg" alt="" title="">";
    echo JHtml::_('string.truncate', ($item->title), $params->get('readmore_limit'));
    endif; ?>

    With this is image path /images/readmore.jpg

    Regards

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

This topic contains 11 replies, has 4 voices, and was last updated by  Ninja Lead 9 years, 2 months ago.

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