› Rooms › General Divi › change text of “older entries” › Reply To: change text of “older entries”
6 September 2021 at 6:43 am
#1085
::
If you prefer JavaScript, you can put this into the “Integrations” tab:
<script type="text/javascript">
(function($) {
$(document).ready(function() {
var olderText = '<< Your Older Posts Text Here'; var newerText = 'Your Newer Posts Text Here >>';
$('.pagination > .alignleft a').html( olderText );
$('.pagination > .alignright a').html( newerText );
});
})(jQuery);
</script>