• I am having the same problem as the guy in this post, namely that I cannot change the wp_list_pages to wp_nav_menu.

    I may be thick but I have tried the solution offered and cannot get the menu to display correctly.

    I can get the wp_nav_menu to display, but it is always vertical not horizontal.

    Any help would be much appreciated I can link to the site or post the code if anyone is willing/able to assist.

    Many thanks

    Jason

    https://www.ads-software.com/extend/themes/crafty-cart/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter JasonOLeary

    (@jasonoleary)

    Hi decided to post the code in case anyone pops in and can make sense.

    original navigation.php is:

    <ul id="nav">
    	<li class="nav-start">?</li>
    	<?php wp_list_pages('title_li=&depth=2'); ?>
    	<li class="page_item last-page-item rss"><a href="<?php bloginfo('rss2_url'); ?>" title="News Feed">RSS</a></li>
    	<li class="nav-end">?</li>
    </ul>

    style.css is:

    [Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]

    I have added add_theme_support( 'nav-menus' );

    when I change navigation.php to:

    <ul id="nav">
    	<li class="nav-start">?</li>
    	<?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?>
    		<li class="nav-end">?</li>
    </ul>

    If I just post <?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?> then the menu moves to the left as a vertical list

    Any help much appreciated!!

    you can see the result here

    Thread Starter JasonOLeary

    (@jasonoleary)

    Sorry for style.css pastbin is
    <iframe src=”https://pastebin.com/embed_iframe.php?i=h6jy1Ec5&#8243; style=”border:none;width:100%”></iframe>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Crafty Cart – Having trouble converting menu to wp_nav_menu’ is closed to new replies.