Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Gabor

    (@nextendweb_gabor)

    Hi! You have some javascript errors, and that is making your website to not to load our code.

    “expected expression, got ‘;'”
    This is in the google ad’s code, that this is what you have:

    google_ad_width = ;
    google_ad_height = ;

    But you can’t give nothing as value, and just have ; there, there should be some numbers. It’s an inline code, so I’m not sure where does it come from, but you might know.

    There are two errors coming from your minified javascript cache file:
    “lightbox_html is not defined”
    “SyntaxError: missing : in conditional expression”

    Probably these are just happening, because the minification didn’t worked well, which is common, so you could try to turn that off.

    And as last: “$(…).dataTable is not a function”

    This could be too, that the cache file isn’t correct, but if not, then it’s this code:

    jQuery(document).ready(function($){
    $('#tablepress-66').dataTable({"stripeClasses":['even','odd'],"ordering":false,"pagingType":"simple","lengthChange":false,"pageLength":13,"searching":false,"info":false});
    });

    It is inline too, and I’m not sure, where is it coming from, but I hope it helps to find it.

    You can check your errors, if you would install Firebug on your Firefox browser, press F12 on that page, click on Console, and refresh the page.

    Thread Starter frederik850

    (@frederik850)

    Hi, first of all, thanks for your wide answer. I turned JS minify off and the slider is displayed again, but the links doesn’t work. Also if I look closely I think there is some weird alignment error.

    Also, thanks for finding some other errors, but other then deactivating some plugins I have no idea on how to get rid of them.

    EDIT: I had another copied slider on the homepage without links apperently, so I changed it back to the original and it works again! Thanks a lot!

    Plugin Author Gabor

    (@nextendweb_gabor)

    These javascript errors are usually coming from a deeper problem, and to fix them you would have to know the code deeply, so the best I can suggest is to try to contact their developers too, maybe it’s just something small that is easy to miss, or if you don’t really need those plugins, then deactivating is a solution too.

    Anyway, I’m glad it worked out!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Slider not loading’ is closed to new replies.