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

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Post Reply
urheat
Forum Members
Forum Members
Posts: 243
Joined: Sat Oct 17, 2009 6:50 am

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

Post by urheat »

How can I change the default pagination links >> to »
Last edited by urheat on Mon Apr 01, 2013 5:02 pm, edited 1 time in total.
User avatar
Rolf
Power Poster
Power Poster
Posts: 7825
Joined: Wed Apr 23, 2008 7:53 am
Contact:

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

Post by Rolf »

Uhm they are in the language file I think
Read http://docs.cmsmadesimple.org/customizi ... ge-strings

Rolf
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Image
cb2004
Power Poster
Power Poster
Posts: 317
Joined: Wed Jul 04, 2007 3:39 pm

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

Post by cb2004 »

Summary template. Change:

Code: Select all

>>
to

Code: Select all

»
urheat
Forum Members
Forum Members
Posts: 243
Joined: Sat Oct 17, 2009 6:50 am

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

Post 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;';
?>
Post Reply

Return to “CMSMS Core”