Tagged Questions
0
votes
0answers
30 views
Use Jetpack Infinite-Scroll in search and category pages
I like Jetpack's infinite scroll a lot and would like to use it on the search-page and category-pages as well.
Is that somehow possible and if yes, how?
5
votes
3answers
278 views
Get 'page' number with infinite scroll
I added infinite scroll support of the Jetpack plugin to my own theme using this tutorial:
add_theme_support( 'infinite-scroll', array(
'container' => 'content',
'footer' => false,
...
0
votes
1answer
86 views
Infinite scroll loads new posts several times
I've added infinite scroll support of the Jetpack plugin to my own theme with:
add_theme_support( 'infinite-scroll', array(
'container' => 'content',
'footer' => false,
'render' ...
1
vote
2answers
402 views
Infinite Scroll not working in own theme
I'm developing my own theme and added this in a function which is called with the hook after_setup_theme to support infinite scroll:
add_theme_support( 'infinite-scroll', array(
'container' ...
1
vote
1answer
90 views
Jetpack Comments with fall-back
I'm developing a theme based off of bones - I went ahead and edited the comments.php file - the comments form is hardcoded - I assumed this was the right way to do things so I carried on and ...