GeoDirectory SupportNo Navigation Menus – GeoDirectory Support https://wpgeodirectory.com/support/topic/no-navigation-menus/feed Sat, 15 Mar 2025 05:41:02 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5606 <![CDATA[No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5606 Sun, 22 Jun 2014 21:53:50 +0000 jltrinka This is in reference to: https://wpgeodirectory.com/support/topic/auto-update-issue

It has been 2 days and I have still not received a response. I upgraded to GeoDirectory 1.1.3, and cannot get any nav menus to appear. They are both configured to display in both WordPress AND within GD under the Design>>Navigation tab. I need to know what is happening here.

]]>
https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5615 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5615 Mon, 23 Jun 2014 04:44:23 +0000 Vikas Hi,

Plz let me know ur site admin user id and pass in a private message (check below – Set as private reply).

Thanks

]]>
https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5616 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5616 Mon, 23 Jun 2014 04:45:25 +0000 Vikas https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5636 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5636 Mon, 23 Jun 2014 08:16:44 +0000 Vikas Hi,

Before sending me info, please follow these steps.

1. Go to appearance > Menus and then click on save menu for the menu u want to show in main navigation area.

2. Go to Geodirectory > design > navigation and then select that main navigation location from the drop-down and save the settings.

Your main navigation should have geodirectory menu items now.

Plz advise ?

Thanks for ur patience.

]]>
https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5660 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5660 Mon, 23 Jun 2014 12:21:48 +0000 jltrinka Sorry for the delay on this. I will test the method listed here and get back to you as soon as I can.

]]>
https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5719 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5719 Mon, 23 Jun 2014 16:47:09 +0000 jltrinka https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5797 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5797 Mon, 23 Jun 2014 23:22:55 +0000 Paolo Hi,

if you send the credentials requested here in a private reply, as soon as a moderator comes online he can check without having to wait for eachother on skype.

I could have checked now for example.

Let us know,

]]>
https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5902 <![CDATA[Reply To: No Navigation Menus]]> https://wpgeodirectory.com/support/topic/no-navigation-menus/#post-5902 Tue, 24 Jun 2014 14:32:43 +0000 Vikas Hi,

I have fixed this issue, it was not related to any GD plugin or GDF. One ofyour ur other plugin has a filter on ‘wp_nav_menu’ hook.
i have written below code in your child theme function file to remove that filter.




 add_action( 'template_redirect', 'geodir_remove_wp_nav_menu_filters',1);
function geodir_remove_wp_nav_menu_filters()
{
	remove_all_filters( 'wp_nav_menu' );
}
]]>