We're merging with GenerateBlocks! Learn more here.

[Support request] Load more load the same post

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Load more load the same post

Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #27051
    Alessio
    Participant

    Hi, I have a problem with load more, it basically loads the same posts all the time. Why ?

    Is it possible to change the text of the label load more ?

    Thank you

    #27113
    elvin
    Moderator

    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;
    } );
    #27124
    Alessio
    Participant
    #27200
    elvin
    Moderator

    Something seems to be messing with the pagination query.

    Can you try disabling ALL plugins except WPSP and WPSP to check if it still occurs?

    #27215
    Alessio
    Participant
    #27293
    Alessio
    Participant

    Please help any suggestion.

    #27333
    elvin
    Moderator

    Hi there,

    Can you try changing theme to a WordPress default theme as well?

    Also, do you have any child theme related to queries?

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.