Page 1 of 1

[SOLVED] Custom next/prev -links to news module pagination

Posted: Wed Mar 13, 2013 9:07 am
by urheat
How can I change the default pagination links >> to ยป

Re: Custom next/prev -links to news module pagination

Posted: Wed Mar 13, 2013 10:11 am
by Rolf
Uhm they are in the language file I think
Read http://docs.cmsmadesimple.org/customizi ... ge-strings

Rolf

Re: Custom next/prev -links to news module pagination

Posted: Sat Mar 16, 2013 3:10 pm
by cb2004
Summary template. Change:

Code: Select all

>>
to

Code: Select all

»

Re: Custom next/prev -links to news module pagination

Posted: Mon Apr 01, 2013 5:02 pm
by urheat
Rolf wrote:Uhm they are in the language file I think
Read http://docs.cmsmadesimple.org/customizi ... ge-strings

Rolf
Thanks Rolf!

That was the case. The file I made to the "/module_custom/News/lang" -directory was:

Code: Select all

<?php
$lang['firstpage'] = '&laquo;';
$lang['prevpage'] = '&lsaquo;';
$lang['nextpage'] = '&rsaquo;';
$lang['lastpage'] = '&raquo;';
?>