Anyone? Please, check it out… i really need to get it fixxed.
If you are using some translation plugins you should be able to change it.
If you want to hard code it then check the file in
accesspress-lite/inc/template-tags.php
index-one.php:358-359
<div class="nav-previous"><?php previous_posts_link( 'Newer posts') ?></div>
<div class="nav-next"><?php next_posts_link( 'Older posts') ?></div>
These strings can’t be translated.
Access Keys, please, change it:
<div class="nav-previous"><?php previous_posts_link( __('Newer posts','accesspresslite') ?></div>
<div class="nav-next"><?php next_posts_link( __('Older posts','accesspresslite')) ?></div>
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Remember that this theme is actively being developed, to hard-code your change in the parent’s themes files would likely be a bad thing in terms of maintenance.
If this change can be made through a Child Theme then it should be.
http://codex.ww.wp.xz.cn/Child_Themes#Why_use_a_Child_Theme.3F
Okeej thanks guys for the reply! Andrew, didnt knew there were translating plugins so you dont change the hard-code. I will use that in the future.
@access Keys, thanks alot accesspress-lite/inc/template-tags.php did work! 🙂 Thanks in regards.
@Kesentielu, what do you mean with the Acces keys?
Thanks guys!
@mennowebdesign if you have changed the texts in core files then please don’t update on our next release.. Updating your theme will lose all your changes.
@kesantielu. Thank you.
@acces Keys, thank you for notice.