• Hello community,
    My first post/question here, i have tried to search the forums but no luck…
    My theme should is infinite-scroll ready for jetpack, jetpack is installed and the function infinite scrolling enabled, i have removed all widget from my main widget area (which is the footer) but still i do not see the infinite button in setting – reading,

    Setting – reading shows this:
    We’ve changed this option to a click-to-scroll version for you since you have footer widgets in Appearance → Widgets, or your theme uses click-to-scroll as the default behavior.

    I do not know what to do ??
    Hopefully someone will have the time to make clear what need to happen, i tried the jetpack documentation but it did not connect

    TY,
    Steven
    cosmicstraggler.com

Viewing 1 replies (of 1 total)
  • Hi there, I was just looking at this issue today and solved it.

    In the functions.php file of the blogsonry theme you can change the type from “click” to “scroll” then go to your admin panel in the reading setting and the sentence will be gone. It will be replaced by “Scroll Infinitely”. Check the box and save then it should work with the scrolling rather than the clicking. (I added support for some extra widgets space I have)

    /**
    * Configure infinite scroll to handle our alternate masonry wrapper
    */

    add_action( ‘init’, ‘blogsonry_theme_supports’);
    function blogsonry_theme_supports() {
    add_theme_support( ‘infinite-scroll’, array(
    ‘container’ => ‘primary’,
    ‘type’ => ‘scroll‘,
    ‘footer_widgets’ =>array(‘main’,’secondary’,),
    ‘footer’ => ‘colophon’
    ) );
    add_theme_support( ‘jetpack-responsive-videos’ );
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Getting infinite scrolling to work in blogsonry (child theme twenty thirteen)’ is closed to new replies.