Title: [Request] Support for Infinite Scroll
Last modified: August 21, 2016

---

# [Request] Support for Infinite Scroll

 *  Resolved [myhero](https://wordpress.org/support/users/myhero/)
 * (@myhero)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/)
 * Hi,
 * Please consider adding support for jetpack’s Infinite Scroll
 * > Infinite Scroll
   >  At this time, your theme, Hueman, doesn’t support Infinite
   > Scroll. Unlike other Jetpack modules, Infinite Scroll needs information from
   > your theme to function properly.
   > Until your theme supports Infinite Scroll, you won’t be able to activate this
   > module.
   > If you are a theme author, you can learn about adding support for Infinite 
   > Scroll at [http://jetpack.me/support/infinite-scroll/](http://jetpack.me/support/infinite-scroll/).

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/topic/request-support-for-infinite-scroll/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/request-support-for-infinite-scroll/page/2/?output_format=md)

 *  [Bernardo](https://wordpress.org/support/users/bernardo/)
 * (@bernardo)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435311)
 * good…. 😀
 *  [adhirajelley](https://wordpress.org/support/users/adhirajelley/)
 * (@adhirajelley)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435392)
 * yes…would love to get an infinite scroll support for your theme
 *  [bakelita](https://wordpress.org/support/users/bakelita/)
 * (@bakelita)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435443)
 * infinite scroll! 😉
 *  [Alexander Agnarson](https://wordpress.org/support/users/alxmedia/)
 * (@alxmedia)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435446)
 * Will see if I get time to add this.
 * The potential issue here is that each row of 2 entries are wrapped in a div together,
   and I’m not sure how well Jetpack handles that.
 * If anyone got it to work, feel free to save me the time to investigate and share
   the fix – and I’ll add it to theme 🙂
 *  [José M. Villar](https://wordpress.org/support/users/el_terko/)
 * (@el_terko)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435448)
 * Sorry to chime in, but maybe switching 2 entries row to one entry solves this
   matter ?
    I know the theme originally has 2 entries, but…
 *  [jamesja](https://wordpress.org/support/users/jamesja/)
 * (@jamesja)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435449)
 * Hello all,
 * I don’t know if this is the right place to post this or no, but I am trying to
   show only one entry per line instead 2 which is default.
 * Can anyone help me with that?
 * Thanks in advance
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [12 years, 4 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435450)
 * You can create a new thread here: [http://wordpress.org/support/theme/hueman#postform](http://wordpress.org/support/theme/hueman#postform)
 *  [Mithun Sridharan](https://wordpress.org/support/users/mithungmxnet/)
 * (@mithungmxnet)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435538)
 * Dear all,
 * I just got the infinite scroll working on my localhost. Here’s how I did it.
 * 1. I installed and activated the [Infinite-Scroll](http://wordpress.org/plugins/infinite-scroll/)
   plugin
    2. In the Infinite-Scroll options, I entered the following attributes:
 * Content Selector: .post-list
    Navigation Selector: .wp-pagenavi Next Selector:.
   nextpostslink Item Selector: .post-row
 * In the child theme’s style.css, I also added the following line:
    .wp-pagenavi{
   display:none;}
 * I saved the settings and refreshed the homepage and viola, I got infinite scroll
   working.
 * This is a quick and dirty method to get the infinite scroll working for this 
   theme and the flipside is that, you need to have the WP-PageNavi plugin installed
   and activated.
 * If somebody has an idea to achieve this without the WP-PageNavi plugin, please
   share your method here.
 *  [WebMaster](https://wordpress.org/support/users/marketing-master/)
 * (@marketing-master)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435544)
 * Thx [@mithun](https://wordpress.org/support/users/mithun/). Works fine for me.
   
   BR
 *  [HelpMeHelpYou](https://wordpress.org/support/users/helpmehelpyou/)
 * (@helpmehelpyou)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435552)
 * Hey [@mithun](https://wordpress.org/support/users/mithun/)
 * I had a look at the latest version of the css and I believe using Navigation 
   Selector: .pagination
    will work.
 *  [Mithun Sridharan](https://wordpress.org/support/users/mithungmxnet/)
 * (@mithungmxnet)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435553)
 * Hi HelpMeHelpYou,
 * I found a much better solution meanwhile. With this approach you don’t need WP
   Page Navi plugin anymore (1 plugin less, a bit faster website).
 * Please put this code in your child theme’s functions.php:
 *     ```
       /**
        * Infinite Scroll
        */
       function custom_infinite_scroll_js() {
       	if( ! is_singular() ) { ?>
       	<script>
       	var infinite_scroll = {
       		loading: {
       			img: 'data:image/gif;base64,R0lGODlhAQABAHAAACH5BAUAAAAALAAAAAABAAEAAAICRAEAOw==',
       			msgText: '<?php _e( '<i class="fa fa-cog fa-spin"></i>Fetching...', 'custom' ); ?>',
       			finishedMsg: "<?php _e( 'All articles fetched.', 'custom' ); ?>"
       		},
       		"nextSelector":".pagination a:last-child",
       		"navSelector":".pagination",
       		"itemSelector":".post-row",
       		"contentSelector":".post-list"
       	};
       	jQuery( infinite_scroll.contentSelector ).infinitescroll( infinite_scroll );
       	</script>
       	<?php
       	}
       }
       add_action( 'wp_footer', 'custom_infinite_scroll_js',100 );
       ```
   
 * This approach works for me and I believe should for you too. However, you never
   get to the bottom of the site with this approach. The footer region has some 
   space for widgets, which is valuable real estate. Hence, I used a “Load More”
   button to load posts progressively. You can find this functionality on my journal’s
   [homepage](http://csrjournal.org).
 * This functionality is slightly more complicated and if you’d like to have this
   functionality, you have to make some modifications at several places.
 * To answer your query in short, yes. Infinite scrolling works with the Hueman 
   theme.
 * Best Regards,
    Mithun
 *  [alemarengo84](https://wordpress.org/support/users/alemarengo84/)
 * (@alemarengo84)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435559)
 * Hi to you all!
    No update about this? Is mithun’s solution the best one?
 *  [Albert Calvet](https://wordpress.org/support/users/albert-calvet/)
 * (@albert-calvet)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435560)
 * Hi there,
 * Just came by to report that the last method provided by **mithun** worked like
   a charm, I still can see the footer with no problem. A lifesaver!
 * PD: I think this is a musto to add to the future releases of the theme 😉
 *  [alemarengo84](https://wordpress.org/support/users/alemarengo84/)
 * (@alemarengo84)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435561)
 * Hi guys!
    I’m speaking to Alx now, template’s author: don’t you think this topic
   has to be taken into real consideration and implement it in your theme? Please,
   let us know. Thanks!
 *  [karsten007](https://wordpress.org/support/users/karsten007/)
 * (@karsten007)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/#post-4435562)
 * Hi everybody,
 * I just tried the code snippet provided by mithun in order to receive infinite
   scrolling. But unfortunately it doesn’t work for me.
 * As far as I could see mithun also does not use this functionality on this website
   anymore.
 * @ Albert Calvet: Could you please give as a link to your website if you are using
   infinite scrolling? Thank you
 * Regards,
    Karsten

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/topic/request-support-for-infinite-scroll/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/request-support-for-infinite-scroll/page/2/?output_format=md)

The topic ‘[Request] Support for Infinite Scroll’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/hueman/3.7.27/screenshot.png)
 * Hueman
 * [Support Threads](https://wordpress.org/support/theme/hueman/)
 * [Active Topics](https://wordpress.org/support/theme/hueman/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/hueman/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/hueman/reviews/)

 * 22 replies
 * 16 participants
 * Last reply from: [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/request-support-for-infinite-scroll/page/2/#post-4435569)
 * Status: resolved