Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

All other Modules /

Discuss all other Modules here.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Max Skitter Slideshow


Go to End


5 Posts   3069 Views

Avatar
Rachel

Community Member, 3 Posts

13 August 2012 at 12:32pm

Hi
I'm having a hard time getting this module to work. I've followed the instructions as well as I could but what I get is a black box and the slides below that box. Can anyone please shed some light on this?

Thanks

Avatar
haantje72

Community Member, 69 Posts

15 October 2012 at 2:01am

Edited: 15/10/2012 2:03am

Use now the latest version...
i could not get it working to... i use ss3 and it seems theme simple uses in the .ss template directly the call for jquery.
Disabled it in the template and maxskitter shows up in the page.

Avatar
susgeek

Community Member, 7 Posts

5 March 2013 at 1:10am

Edited: 05/03/2013 1:11am

I downloaded the most recent version from
https://github.com/Silvermax/maxskitter/

I am having a similar issue - but only the black box. I have tried disabling maxskitter's jquery in _config.php per the instructions, but have had no luck.

I am using the sunrise theme:
http://www.gpmd.co.uk/blog/sunrise-a-free-responsive-html5-theme-for-silverstripe-cms/

Avatar
haantje72

Community Member, 69 Posts

5 March 2013 at 1:23am

Edited: 05/03/2013 1:24am

in the theme Simple then page.ss
near the bottom of the code

<% require javascript(http://code.jquery.com/jquery-1.7.2.js) %>
<% require javascript(themes/simple/javascript/script.js) %>

replace with

<% require javascript(maxskitter/javascript/jquery-1.6.3.min.js) %>
<% require javascript(themes/simple/javascript/script.js) %>

leave maxskitter as it is with no disabling of anything in the config... for me it works now perfectly

so maybe in your template is jquery directly called... so replace and look if it works

Avatar
Gina2h

Community Member, 1 Post

30 March 2013 at 9:15am

To get it working:

copy simple/javascript/script.js to mysite/code/script.js

in simple/templates/page.ss replace this:

<% require javascript('framework/thirdparty/jquery/jquery.js') %>
<%-- Please move: Theme javascript (below) should be moved to mysite/code/page.php --%>
<script type="text/javascript" src="{$ThemeDir}/javascript/script.js"></script>

with this:

<script type="text/javascript" src="mysite/code/script.js"></script>