Hi,
I recently installed Carousel Panel Style and I can't get the carousel to display. I have the following modules installed:
- Carousel Panel Style (v5.x-1.3)
- jCarousel (v5.x-1.2)
- JQuery Update (v5.x-1.0)
- Panels (5.x-2.0-beta2)
I'm trying to set up a Mini-Panel that displays all the items of a certain content type in a carousel. Here is an export of my mini-panel:
$mini = new stdClass();
$mini->pid = 'new';
$mini->name = 'promotions';
$mini->title = 'Promotions';
$mini->requiredcontexts = array();
$mini->contexts = array();
$mini->relationships = array();
$display = new stdClass();
$display->did = 'new';
$display->name = NULL;
$display->layout = 'onecol';
$display->layout_settings = NULL;
$display->panel_settings = array (
'style' => 'carousel',
'style_settings' =>
array (
'default' =>
array (
'orientation' => 'horizontal',
'visible' => '1',
'scroll' => '1',
'auto' => '0',
'animation' => '750',
'wrap' => 'none',
),
),
'edit_style' => 'Edit style settings',
'individual' => 0,
'panel' =>
array (
'middle' =>
array (
'style' => '',
'edit_style' => 'Edit style settings',
),
),
'did' => '14',
);
$display->content = array();
$display->panels = array();
$pane = new stdClass();
$pane->pid = 'new-1';
$pane->panel = 'middle';
$pane->type = 'views2';
$pane->subtype = 'promotions';
$pane->access = array();
$pane->configuration = array (
'override_title' => 0,
'override_title_text' => '',
'css_id' => '',
'css_class' => '',
'title' => 'Promotions',
'name' => 'promotions',
);
$display->content['new-1'] = $pane;
$display->panels['middle'][0] = 'new-1';
$mini->display = $display;
Any ideas? If you need more info, let me know.
Comments
Comment #1
wim leersAre you sure jQuery Update is installed property? Check admin/logs/status.
Comment #2
rgraves commentedThat did it, thanks! I read the readme files for other modules, but not jquery_update.
Rob
Comment #3
wim leersComment #4
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #5
najibx commentedHello,
I don't see "Carousel Panel Style" in the select list "Panel settings". I do have your other great panels_tabs working fine.
Checked admin/logs/status ;
JQuery Update Installed correctly : The current installed version of JQuery is 1.1.2
Carousel Panel Style 5.x-1.3 2008-Feb-09
jCarousel - 5.x-1.2 2008-Jan-28
Comment #6
najibx commentedDup of http://drupal.org/node/275169.
Comment #7
Steven Mansour commentedEven though this is a duplicate, there seems to be a way around the bug that prevents carousel from showing up in the style list settings page for a Panel, according to the comments on that thread - can you share that workaround?
Comment #8
najibx commentedSteven,
or you can create Carousel views. use insert view module to insert the Carousel Views in your body or you can insert the Carousel views in the panel (must enable the views pane first).