Viewing 1 replies (of 1 total)
  • Plugin Author Derek Herman

    (@valendesigns)

    You have JS errors on the page.

    TypeError: Object [object Object] has no method 'datepicker' [http://www.liveandunsignedcomp.com/listen-to-performers:33]
    
    ReferenceError: random is not defined [http://www.liveandunsignedcomp.com/listen-to-performers:75]

    Which is a reference to this code in your HTML

    line 33:

    $m=jQuery.noConflict();$m(document).ready(function(){$m(".ccf-datepicker").datepicker();});

    line 75:

    (function($){$.fn.shuffle=function(){var allElems=this.get(),getRandom=function(max){return Math.floor(Math.random()*max);},shuffled=$.map(allElems,function(){allElems.splice(random,1);return randEl;});this.each(function(i){$(this).replaceWith($(shuffled[i]));});return $(shuffled);};})(jQuery);$(function(){$(".discounted-item").css("opacity","0.8").hover(function(){$(this).css("opacity","1");},function(){$(this).css("opacity","0.8");});$("#allcat").click(function(){$(".discounted-item").slideDown();$("#catpicker a").removeClass("current");$(this).addClass("current");return false;});$(".filter").click(function(){var thisFilter=$(this).attr("id");$(".discounted-item").slideUp();$("."+thisFilter).slideDown();$("#catpicker a").removeClass("current");$(this).addClass("current");return false;});$(".discounted-item").shuffle();});

    It doesn’t appear to be an OT related bug, but something in your date picker and it says random is not defined which leads me to believe there is a JS conflict in your version of jQuery or possibly a hundred other things. Maybe jquery is being called too late in your document. I’m not really sure the reason it’s not working but the errors suggest some other cause. Hopefully you can find a solution. Sorry you’re having trouble.

    Cheers,
    Derek

Viewing 1 replies (of 1 total)

The topic ‘Multidesign theme not working with latest optiontree’ is closed to new replies.