I’m adding development to a already set up WordPress website and need some help.
Like post slider I have tried more than 4 slider plugins but they don´t work on my template. Now i´m using WordPress Theme Slider. I test it on other WordPress templates and there it works.
Could you help me to solve this issue? I’m not a professional in WordPress.
I Have this error:
JS Uncaught TypeError: Object #<Object> has no method 'coinslider'
Here is how the sledier is called:
$(document).ready(jQuery(function ($) {
$('#coin-slider').coinslider({width: 565,height: 290, spw: 7, sph: 5, delay: 5000, navigation: true, effect: '', repeatBg: 'no-repeat', navigationShow: 'hover'});
Uncaught TypeError: Object # has no method 'coinslider'
}));
First,
the error
Uncaught TypeError: Object # has no method 'coinslider'would suggest thatcoinslideris not known and the JavaScript is not included in the page. Check out your page source and make sure that the “WordPress Theme Slider” JavaScript is included or the Coin Slider JavaScript…From the Coin Slider web page, these are required if using the Coin Slider plugin (not sure what changes by using the WordPress Theme Slider:
Second,
Try the following instead of your JavaScript:
I´m not sure if why the
Uncaught TypeError: Object # has no method 'coinslider' }));is inside of the JavaScript you posted, maybe it was pasted by mistake.Also, the options
repeatBgandnavigationShoware not listed as options in the coin slider from their web page. Try leaving them out (as in the example above) at first and see if that changes anything. I also removedjQueryfrom thedocument).ready(jQuery(function.from your code as it’s not in the example given on the Coin Slider page.