Admin screen not appearing
-
The menu items were not appearing in the admin screen, from what I can see there is an issue in the code function \IP2LocationRedirection::admin_page
where:
`add_options_page( ‘IP2Location Redirection’, ‘IP2Location Redirection’, 5, ‘ip2location-redirection’, array( &$this, ‘admin_options’ ) );
should be:
add_options_page( ‘IP2Location Redirection’, ‘IP2Location Redirection’, ‘manage_options’, ‘ip2location-redirection’, array( &$this, ‘admin_options’ ) );
The topic ‘Admin screen not appearing’ is closed to new replies.