Can you let me know what version of wordpress you are running and the plugins that you have active. I will check it out.
Sure. WP is 4.1.1 and I only have as active plugins these:
– Booking system by dot on paper
– CF post formats by crowdfavorite
– Contact Form 7 by Takayuki Miyoshi
– WP Google Maps
Thanks.
Updated to 1.0.9
Let me know if you still have the same issue
This problem occurs also in the latest version.
This is because a menu_position conflict, just remove ‘menu_position’ arg on line 336 class-mjm-clinic.php: ‘menu_position’ => 25,
hi aboelabba,
Looking at wordpress wp-admin/menu.php I can see that they have attempted to avoid menu_position conflicts by incrementing the menu position if already taken, but it does not check if the incremented position is in conflict.
Line:120
while ( isset($menu[$ptype_menu_position]) || in_array($ptype_menu_position, $core_menu_positions) )
$ptype_menu_position++;
Having looked at various possible solutions, I agree with you – safest solution is to remove the menu-position and let wordpress decide where it falls in the menu.
I will push an update.
Thanks.