Hi
The module is working with the bartik theme. But if you use omega theme, does not work. The problem is that Omega theme does not use the functions template_preprocess, by using a particular system of template functions.
My solution, i do not think it's more correct, is copy the next functions in file views_slideshow_jcarrousel.module
function TEMPLATE_preprocess_views_slideshow_jcarousel_pager(&$vars) {
_views_slideshow_jcarousel_preprocess_pager($vars);
}
function TEMPLATE_preprocess_views_slideshow_jcarousel_pager_item(&$vars) {
_views_slideshow_jcarousel_preprocess_pager_item($vars);
}
Paste this functions in file template.php of subtheme omega or theme omega.
and rename TEMPLATE for the name of subtheme omega or omega.
I put the solution in case anyone else is interested.
Comments
Comment #1
knalstaaf commentedDoesn't work for me...
#1450846: jCarousel is never initialized properly with Omega theme
Comment #2
Nick Robillard commentedThanks, this worked for me. Patch in #1450846: jCarousel is never initialized properly with Omega theme did not solve.
Comment #3
kevster commentedMany thanks - this worked for me after rolling patch mentioned above. Weird thing is it did work fine in the views preview overlay but not when viewing the page. Thx for your help ;-)
Comment #4
Colin @ PCMarket commentedThe combination of the patch and adding the functions worked for me too