Only dropdown categories

Forums Forums Menus Only dropdown categories

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #53
    Anonymous
    Member

    Thank you so much for this plugin! I have a little question, i just want to display drop down categories ( under one top main), i have tried to modify it on my own but i have only managed to make drop down categories without the main top “categoriesâ€

    #2203

    Brit, try replacing the &lt?php suckerfish(); ?> code in your theme with the following. I think it is what you are trying to achieve, if not then let me know.

    [code:37rd9149]<?php echo ‘
    <ul id="suckerfishnav">
    <li><a href="#">Categories</a>
    <ul>’ , wp_list_categories(‘title_li=&exclude=10’) , ‘</ul>
    </li>
    </ul>’;
    ?>[/code:37rd9149]

    #2204

    The following should do the trick <img decoding=” title=”Smiley” />

    [code:2zyv0935]<?php echo ‘
    <ul id="suckerfishnav">
    <li><a href="#">Pages</a>
    <ul>’ , wp_list_pages(‘title_li=’) , ‘</ul>
    </li>
    <li><a href="#">Categories</a>
    <ul>’ , wp_list_categories(‘title_li=&exclude=10’) , ‘</ul>
    </li>
    </ul>’;
    ?>[/code:2zyv0935]

    I would love to see the final product, so feel free to post a link to your site once it’s done! Or leave a message via my Contact Page if you don’t want to post the URL here.

    #2205

    Sorry, I forgot to reply to you second question!

    The delay time can not be changed. It is instant and I don’t now how to change that. It could probably be controlled by Javascript, but I know next to nothing about Javascript so can’t help sorry.

    I suggest posting a question at http://sitepoint.com/forums/ in their Javascript section. If you do this and find a solution I’d love to hear about it as it is something I’d like to add as an option in future versions of the plugin.

    #2206
    Anonymous
    Member

    You really rock! Thank you for making this plugin even more awesome!

    #2207

    I’m glad you find it so useful <img decoding=” title=”Smiley” />

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.