Rooms General Divi change text of “older entries”

Viewing 3 reply threads
    • #1076
      Colin Sik
      Participant
        @colin
        Up
        0
        Down
        ::

        how to rename Divi theme category archive page “Older Entries” word

      • #1077
        Terry Hale
        Keymaster
          @mizagorn
          Up
          0
          Down
          ::

          I can fix you right up if you have a link to share.

        • #1084
          Terry Hale
          Keymaster
            @mizagorn
            Up
            1
            Down
            ::

            This should help you out. Also includes changing “Newer Entries”. Put in your child stylesheet or theme Custom CSS area.

            .pagination > .alignleft a:before {
            content: '<< Your Older Posts Text Here'; visibility: visible; } .pagination > .alignleft a {
            visibility: collapse;
            }
            .pagination > .alignright a:before {
            content: 'Your Newer Posts Text Here >>';
            visibility: visible;
            }
            .pagination > .alignright a {
            visibility: collapse;
            }

            • This reply was modified 2 years ago by Colin Sik.
          • #1085
            Terry Hale
            Keymaster
              @mizagorn
              Up
              1
              Down
              ::

              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>

          Viewing 3 reply threads
          • You must be logged in to reply to this topic.