Woo Slider:仅限10张幻灯片 - 如何制作无限制?

时间:2013-10-29 05:03:52

标签: javascript php jquery

我安装了一个WooThemes OnePager作为主题,主题附带一个精选滑块。滑块只能容纳10张图像。当我使用OnePager模拟iBook(用于Ipad)时,我需要超过10个图像。我无法在Javascript中找到更改此位置的内容,我不知道如何更改它(因为我使用Javascript不够先进)。

这是包含所有Javascript文件的WooSlider的GitHub: https://github.com/woothemes/flexslider

这是用于下载和检查的OnePager主题: http://sacredstring.com/timeandregan/theonepager.zip

上述网站也是安装了OnePager的网站。

在'theme-options.php'文件中有代码

$options[] = array( 'name' => __( 'Number of Slides', 'woothemes' ),
                'desc' => __( 'Select the number of slides that should appear in the featured slider.', 'woothemes' ),
                'id' => $shortname . '_featured_entries',
                'std' => '3',
                'type' => 'select',
                'options' => $slide_options );

非常感谢任何见解。

1 个答案:

答案 0 :(得分:0)

啊!找到了。谢谢nicolekanderson。简单的错误 - 我在我的硬盘上没有正确的OnePager,并继续搜索其他主题:/ errg

在' theme-options.php' file是这行代码:

// More Options
$slide_options = array();
$total_possible_slides = 10;
for ( $i = 1; $i <= $total_possible_slides; $i++ ) { $slide_options[] = $i; }

将可能的幻灯片更改为30并且有效。