• Hi

    Having some issues with superfish drop down menu working on a thematic child theme, using wordpress 3.2.2. Anyone had similar problems and hopefully a resolution?

    I have 2 menus, a primary at the top of every page, and a secondary on the inner pages.

    I have configured the menus in the wordpress back end through: Apperance > menus.

    When i add a new page, on the right under ‘Page attributes’ i specify the parent page, so all looks good from here.

    And i go back to Apperance > menus to add the menu item.

    But the child page is not showing as a drop down to the parent, it just adds the page as a top level menu.

    Am i missing somethign to get this working? Seems pretty straight forward but tried everything and cant get it to work.

    DO i need to add any calls to superfish or jquery into the templates. I thought it was auto

    Anyone have any ideas?

    Thanks

Viewing 1 replies (of 1 total)
  • I had the same problem.

    This turned out to be a Superfish on WordPress 3.3.2 problem . I found a solution over here: https://forums.digitalpoint.com/showthread.php?t=2475361

    The fix is to add the following to the Functions file in the child theme:

    // Fix the Superfish WordPress 3.3.2 problem
    // Filter the default drop-down options
    function childtheme_dropdown_options($dropdown_options) { ?>

    jQuery.noConflict();
    jQuery(document).ready(function(){
    jQuery(“ul.sf-menu”).supersubs({
    minWidth: 14, // minimum width of sub-menus in em units
    maxWidth: 22, // maximum width of sub-menus in em units
    extraWidth: 1 // extra width can ensure lines don’t sometimes turn over
    // due to slight rounding differences and font-family
    }).superfish({
    delay: 600, // delay on mouseout
    animation: {opacity:’show’,height:’show’}, // fade-in and slide-down animation
    });
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Superfish not working on thematic child theme’ is closed to new replies.