Shape 5

Joomla Club Extensions => News Display V2 - Club => : janken January 31, 2015, 05:07:17 PM



: Change text in "readmore"
: janken January 31, 2015, 05:07:17 PM
Hello,

I would like to change the text "Read more ..." in the module S5 News Display 2, but I can not find where to change it.

Does anyone know how to do it?

Regards,
Artur


: Re: Change text in "readmore"
: jonahh February 02, 2015, 02:43:43 PM
Hey Artur,

The text is a default Joomla read more text so if you change the read more text for Joomla it will change it for all your articles and this module too.  But you can just edit the text on this module by doing a little code change below.  NOTE: This won't suit multi language sites but you can hard code in a language here if you are only using one language on your site:

Open up:

modules\mod_s5_news_display_2\tmpl\_item.php

Look for:

:
echo '<p class="readmore s5modnews"><a class="s5btn" href="'.$item->link.'">'.$item->linkText.'</a></p>';

Change the below to whatever you desire:

:
.$item->linkText.'

For example:

:
echo '<p class="readmore s5modnews"><a class="s5btn" href="'.$item->link.'">More Information</a></p>';