Featured Content Gallery

4 replies
  • WEB DESIGN
  • |
hey Guys
Im making a blog/website for a school project and im wondering could anyone help me with featured content gallery.

You see the featured content gallery is supposed to be on the top (the Outline of a rectangle)
I have put in the post name into featured content gallery and the dimensions.
If anyone could help me with it i would be very greatful

stailbesbluecheese.tk
#content #featured #gallery
  • Profile picture of the author burnbebe
    What sort of help with this do you need?
    {{ DiscussionBoard.errors[2823273].message }}
  • Profile picture of the author phpbbxpert
    Your problem is a conflict by jQuery and MooTools js libraries.

    WordPress is loading jQuery first causing and issue.
    The error is $ is not a function
    which is being called by the gallery.

    Try adding this to your active themes functions.php

    if(!is_admin())
    {
    wp_deregister_script("jquery");
    }

    That will stop WP from loading jQuery.
    Now, you might need it for something else, but this will test to see if it is a conflict.
    I see the content in the code of the gallery, it's just not loading it because of this error.

    If you end up needing jQuery, and its very possible you do which is why WP is loading it.
    Then try adding it back in, but put it right before the closing head tag </head> in the header
    or if that doesn't work see if you can load it in the footer instead.
    You can just load it from Google
    <script type="text/JavaScript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>

    Also after loading that jQuery add
    <script type="text/javascript">
    $.noConflict();
    </script>
    {{ DiscussionBoard.errors[2823758].message }}
  • Profile picture of the author swtsubmit
    Try in options of featured content gallery, I think I saw option to use jquery instead of motools.
    {{ DiscussionBoard.errors[2824832].message }}
  • Profile picture of the author Thomas Buckley
    Im now getting the errors The requested theme does not exist
    i switched to other theme and it still does not work :S
    Any Advice?

    Thanks for your Helps phpbbxpert
    Signature

    Ní hé lá na gaoithe lá na scolb - The windy day is not the day for thatching.

    {{ DiscussionBoard.errors[2826086].message }}

Trending Topics