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
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
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.
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
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.
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/
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
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>