[SOLVED] Custom next/prev -links to news module pagination
[SOLVED] Custom next/prev -links to news module pagination
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.
Re: Custom next/prev -links to news module pagination
Uhm they are in the language file I think
Read http://docs.cmsmadesimple.org/customizi ... ge-strings
Rolf
Read http://docs.cmsmadesimple.org/customizi ... ge-strings
Rolf
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: Custom next/prev -links to news module pagination
Summary template. Change:
to
Code: Select all
>>
Code: Select all
»
Re: Custom next/prev -links to news module pagination
Thanks Rolf!Rolf wrote:Uhm they are in the language file I think
Read http://docs.cmsmadesimple.org/customizi ... ge-strings
Rolf
That was the case. The file I made to the "/module_custom/News/lang" -directory was:
Code: Select all
<?php
$lang['firstpage'] = '«';
$lang['prevpage'] = '‹';
$lang['nextpage'] = '›';
$lang['lastpage'] = '»';
?>