Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter thrill12

    (@thrill12)

    Thanks!

    Yes, same issue here. It’s extremely slow loading, and caused me to take off my blog, because i couldn’t be bother being CPU Throttled by my web service provider. Please fix this issue. I use 2.8.6. (or used!)

    Thread Starter thrill12

    (@thrill12)

    Not really, the inove team has a dropdown in the menu for sub categories, so u can have like 20 categories, all with 1 parent category, and the parent category will show in menu with a dropdown of sub categories. This is why having pages and categories on the menu, wont be a problem at all. I dont know if you’re the right person to ask (guess i need answer from someone running the themes) about what code exactly to change, so both pages and categories will work.

    <!-- navigation START -->
    <div id="navigation">
    	<!-- menus START -->
    	<ul id="menus">
    		<li class="<?php echo($home_menu); ?>"><a class="home" title="<?php _e('Home', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a></li>
    		<?php
    			if($options['menu_type'] == 'categories') {
    				wp_list_categories('title_li=0&orderby=name&show_count=0');
    			} else {
    				wp_list_pages('title_li=0&sort_column=menu_order');
    			}
    		?>
    		<li><a class="lastmenu" href="javascript:void(0);"></a></li>
    	</ul>
    	<!-- menus END -->

    I hope you can help me out, this is the code for the navigation. I have in “inove theme options” set it to use “categories as menu”. The other option is “pages as menu” (but i have this option disabled). I need a way to enable both.

Viewing 3 replies - 1 through 3 (of 3 total)