Hi there,
That’s strange, can you link us to the site in question? You can send the link on your contact page here – https://wpshowposts.com/contact/ – if you wish for it to be private.
Is it possible to change the text of the label load more ?
You can filter it out using this PHP snippet:
Example: Changing Load more
and Loading...
text to Russian.
add_filter( 'gettext', function( $text ) {
if ( 'Load more' === $text ) {
return 'Показать еще';
}
if ( 'Loading...' === $text ) {
return 'Загрузка...';
}
return $text;
} );