1) I don’t not known what happens for you without a link to your site. Pagination work for me on my personal themes, on also on the two default wordpress themes (eleven/twelve). So it’s hard to guess what happens.
2) Yes, it’s possible, view FAQ http://ww.wp.xz.cn/extend/plugins/livetv-bundle/faq/
3) This variable is important because the content is generate on server side before echoed only one time. In the previous versions, multiple echo exist for each loop of thumbnails list (like own3d, twitch) and also multiple echo by thumbnail… It’s not ideal.
Hi Kwark,
thanks for the support.
My website is: http://www.castjunkies.com
Best regards,
sash
as I said. Everything works fine, but the pagination will not be shown. Dont know why.
Hi Kwark,
could you add a “sort-by-genre” feature in a future update?
Like sort by Gaming, Social or/and RPG, Adventure, Shooter ?
What do you think about this idea?
Best regards,
sash
PS: I created a Photoshop file for my idea.
You “just” need to add a Category creation field in the Admin Panel and the possibility to set a category for every stream (user).
http://oi46.tinypic.com/15znlau.jpg
Sorry for the delay,
I look @ your site
JPages works automatically with ul->li elements or Table->tr elements, it’s wherefore the JQuery code needs only your containerID of the container for elements (@ line 341 to 372 in /page-frontend/page-livestream.php)
And currently your site has this html structure
<div id="minithumb-twitch-content">
and elements here (each in a div element)
</div>
And This JQuery extension needs something like that
<ul id="minithumb-twitch-content">
and elements here (each in a li element)
</ul>
But you may cheat to try to make no changes on your css (something like that)
<div id="minithumb-twitch-content">
<ul id="IdOfYourChoiceForJQueryContainerID">
and englobe each div (each of your current div in a li element)
</ul>
</div>
And add IdOfYourChoiceForJQueryContainerID in the containerID: @ line ~355
Also don’t forget to add the required html part for this JQuery plugin for its pagination (example @ line ~608 in the latest version)