Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Login with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Tagged

Welcome to the new Community Forums!

Existing Users: As an additional security precaution measure, please reset your password and login with your new password given to you via your email.

New Users: You are required to link with either your Facebook, Twitter, Google or OpenID account to register.

If you have any other issues, please send the administrator an email at support [ a t ] arrastheme.com
Drop Down Menus Suddenly Stopped Working in Arras Theme
  • The drop down menu on my site http://www.worldbiking.info/wordpress/ have suddenly stopped working. I have not added any new plugins or altered the site in any way so not sure why this has happened.

    I'm using wordpress 3.5 ( I know I should update).

    Any idea what might be causing this and how I can fix it?

    Your help/suggestions GREATLY appreciated!
  • doe7doe7
    Member
    I noticed the same thing on my website today! I hope there'll will be something on it soon.

    It must be something to do with JavaScript as Auto Thickbox stopped working as well and in the JavaScript console of Chrome it shows an error with Superfish.js

    I need both the plugin and the menu. Any ideas? I know I won't be able to fix this on my own. :(

    My site is http://endtimeinfo.com/
  • doe7doe7
    Member
    @worldbiking I see that your feature slider stopped working as well, just like mine. It must be connected and I'm suspecting jQuery...
  • doe7doe7
    Member
    I found this today, but don't know what to do with the info. It looks like the answer to the problem though..

    http://www.studiopress.com/forums/topic/superfish-broken-with-jquery-1-9/
  • doe7doe7
    Member
    I tried the suggested fix in the above link, but using the piece of code in functions.php gives a 'server error' for the page.

    Anybody? How should I adapt it to make it work with arras?
  • Hi!

    Need some help here! Have the same problem. I don't know whats wrong with it. http://www.amazing-grace-westport.com

    This is my Arras Header file (I'm Using the latest update of Wordpress 3.5.1):

    <?php arras_above_nav() ?>
    <div id="nav">
    <div id="nav-content" class="clearfix">
    <?php
    if ( function_exists('pixopoint_menu') ) {
    pixopoint_menu();
    } elseif ( function_exists('wp_nav_menu') ) {
    wp_nav_menu( array( 'sort_column' => 'menu_order', 'menu_class' => 'sf-menu menu clearfix', 'theme_location' => 'main-menu', 'fallback_cb' => 'arras_nav_fallback_cb' ) );
    } else { ?>

    <ul class="sf-menu menu clearfix">
    <li><a href="<?php bloginfo('url') ?>"><?php _e( arras_get_option('topnav_home') ); ?></a></li>
    <?php
    if (arras_get_option('topnav_display') == 'pages') {
    wp_list_pages('sort_column=menu_order&title_li=');
    } else if (arras_get_option('topnav_display') == 'linkcat') {
    wp_list_bookmarks('category='.arras_get_option('topnav_linkcat').'&hierarchical=0&show_private=1&hide_invisible=0&title_li=&categorize=0&orderby=id');
    } else {
    wp_list_categories('hierarchical=1&orderby=id&hide_empty=1&title_li=');
    }
    ?>
    </ul>

    <?php } ?>
    <?php arras_beside_nav() ?>
    </div><!-- #nav-content -->

  • doe7doe7
    Member
    It looks like yours is working. What did you do to fix it, because mine isn't solved yet? I'm getting desperate... :(