Load more button text

Add a setting to change Load More text on the button

Folks, our former Wishlist portal, where our users shared their requests and suggestions, was transferred to this forum. You’re most welcome to vote, add new ideas, and leave your comments here — we surely will consider them all! :star_struck:

Original Votes: 5

That, or be able to remove the button…

Hello @Tim_Jedrek

We are overjoyed that you decided to join our crew! Welcome :heart:

I agree that such a setting would be really useful and we’ll try to consider such a functionality. As for now, you can hide the button using this CSS code:

.es-load-more-button { display: none !important; }

To change the text of the button:

.es-load-more-button {
  font-size: 0;
}

.es-load-more-button :after {
  content: 'YOUR TEXT';
  font-size: 13px;
}

Please add this code to the Custom CSS field on the Style tab and let me know if it helped :slightly_smiling_face:

1 Like