HelenCrozier Posted March 30 Share Posted March 30 Hello My client would like to change the wording of the event pagination located at the bottom of https://www.lycetteandassociates.com/calendar/trends-and-innovations-in-global-housekeeping-management-2023-presentation-edinburgh (password=lycette) Instead of earlier event and later event she would like it to say previous event and next event. Also I have hidden the meta tags but feel that the spacing between the registration button and the pagination is too much. Is there code that would help with both of these? I have exhausted my possibilities and am calling on the professionals... Thank you. Link to comment
Solution tuanphan Posted April 3 Solution Share Posted April 3 Add to Settings > Advanced > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".eventitem-pager-date").html(function() { return $(this).html().replace("Earlier", "Previous"); }); $(".eventitem-pager-date").html(function() { return $(this).html().replace("Later", "Next"); }); }); </script> <style> .eventitem-pager { margin-top: 0px; } </style> HelenCrozier 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
HelenCrozier Posted April 3 Author Share Posted April 3 Thank you so much @tuanphan That's perfect and I appreciate your help. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment