• After a certain amount of posts, buttons appear to go to older / newer posts at the bottom of the blog feed. Using the demo theme as an example:

    https://www.lyrathemes.com/preview/?theme=vega

    Scroll to the bottom and click left to go to older posts. Now scroll to the bottom again. The buttons are nearly on top of each other. Shouldn’t the “right” button be on the right side of the blog feed?

    Also, any idea how to enable infinite scroll? I tried pasting this code in the functions.php file, with and without infinite scroll activated in Jetpack:

    add_theme_support( ‘infinite-scroll’, array(
    ‘container’ => ‘col-md-9 blog-feed-column’,
    ‘footer’ => ‘page’,
    ));

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter wbbuesch

    (@wbbuesch)

    Also tried something like this for the infinite scroll:

    function vega_child_infinite_scroll_init() {
    add_theme_support( ‘infinite-scroll’, array(
    ‘type’ => ‘click’,
    ‘container’ => ‘col-md-9 blog-feed-column’
    ) );
    }
    add_action( ‘after_setup_theme’, ‘vega_child_infinite_scroll_init’ );

    Still not working…

    Theme Author lyrathemes

    (@lyrathemes)

    The arrows show this way because that’s a design choice. You can swap them out (in a child theme) if you like.

    For infinite scroll – I am afraid I cannot get to this right away ?? I have made a note and will look into this and apply any fixes in the coming update.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bug: Older posts / Newer posts buttons on blog feed / Infinite Scroll’ is closed to new replies.