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

knalstaaf’s picture

Status: Active » Closed (duplicate)
Nick Robillard’s picture

Thanks, this worked for me. Patch in #1450846: jCarousel is never initialized properly with Omega theme did not solve.

kevster’s picture

Many 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 ;-)

Colin @ PCMarket’s picture

The combination of the patch and adding the functions worked for me too