Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi Signor,

    Its difficult to say without being able to see the error, but you could try the following:

    Ensure the slider has the ‘Print JavaScript’ and ‘Print CSS’ options enabled.
    Ensure your theme is loading jQuery
    Disable all other plugins, if it works then try to narrow it down to the offending plugin.

    If it doesn’t work, please let me know which theme you’re using and provide a list of installed plugins and I’ll try to replicate the issue here.

    If you’re familiar with developer tools in Chrome, please also paste me the error (from the ‘Console’ tab).

    Regards,
    Tom.

    Thread Starter signor

    (@signor)

    Hi Tom,

    thanks for getting back to me.

    I have Print JavaScript’ and ‘Print CSS’ options enabled & jQuery is loading fine.
    I’ve created the theme & I had no other plugins installed.

    The error I get in chrome is

    Uncaught TypeError: Object [object Object] has no method ‘nivoSlider’

    Any help is much appreciated.

    Thanks,
    Matt

    Hi Matt, thanks for the info.

    Do you have a call to wp_head() in your <head> in your theme?

    <?php wp_head(); ?>

    Also, check you have this code just before your closing </body> tag:

    <?php wp_footer(); ?>

    If that doesn’t work, then I think I’m out of ideas. Could you try using the standard wordpress 2012 theme?

    Regards,
    Tom.

    Thread Starter signor

    (@signor)

    AMAZING!!! it was the footer missing.

    Thanks so much

    Cool, glad you got it working ??

    We’d really appreciate it if you could leave a review for Meta Slider!

    Thanks,
    Tom.

    Thread Starter signor

    (@signor)

    No Problem, I definitely will.

    Can I ask one more question, what css file do I need to update to remove the border?

    Thanks again for your speedy help!!

    Thanks.

    Ideally you don’t want to be editing the plugin files directly as you’ll lose your changes when you update.

    So, you should override the meta slider styles in your themes styles.css file.

    The CSS should be something along the lines of (untested):

    .metaslider div,
    .metaslider ul {
        border: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        -o-box-shadow: none !important;
    }

    In a future version I plan on adding something in to make this process a bit more straight forward as what I’ve put above isn’t exactly best practice – but it should work ??

    Thanks for the review!

    Regards,
    Tom.

    Thread Starter signor

    (@signor)

    ahhh very good point.
    I’ll give this a go.
    Thanks again.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Images Stacked’ is closed to new replies.