Are you a GenerateCustomer?

Do you have an active GP Premium or GenerateBlocks Pro license key?

Create a GenerateSupport account for GeneratePress and GenerateBlocks support in one dedicated place.

Create an account
Already have a GenerateSupport account? Login

Just browsing?

Feel free to browse the forums. Support for our free versions is provided on WordPress.org (GeneratePress, GenerateBlocks).

Want to become a premium user? Learn more below.

Can i use loop pagination without loop

  • I cannot use the loop template in the author profiles so i used a content template but the pagination is basic (wordpress). Can i use the pagination or is it possible to style it that way?

    This it how it has to look like –> https://alexasia.de/thailand/

    This is how it looks at the moment –> https://alexasia.de/autor/alex/

    Thank you!

  • Hi there,

    no, it would have to have the Query Loop for it to work.
    You could use some PHP and CSS to style the theme nav to look similar.

    You can change the next and previous icons with this snippet:

    
    add_filter( 'generate_previous_link_text', function() {
        return '<<';
    } );
    
    add_filter( 'generate_next_link_text', function() {
        return '>>';
    } );
    

    You can return the SVG HTML inside.

    Once there I can assist with the CSS

  • Works like charm. Thanks!

  • Glad to hear that

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