Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter KZimbo

    (@kzimbo)

    Issue solved!
    The hoster set the following parameter in the wp-config.php

    define(‘DISALLOW_FILE_EDIT’, true);

    After setting it to false , the plugin is being displayed in the sidebar!

    I’m having the same issue. Can’t access the options to change any styling.

    Where do you do this? (I don’t know much about code.)

    Thread Starter KZimbo

    (@kzimbo)

    The wp-config.php is located in the root directory of your WP installation.

    It’s because of this line of code in the options-framework.php file

    $wpsg_of_page = add_menu_page(WPSG_OPTIONS_FRAMEWORK_NAME, WPSG_OPTIONS_FRAMEWORK_NAME, 'edit_plugins', WPSG_OPTIONS_FRAMEWORK_TAG, 'wpsg_optionsframework_page', WPSG_OPTIONS_FRAMEWORK_URL . 'images/image.png');

    Changing the ‘edit_plugins’ to ‘manage_options’ has the same effects in that only users at the administrative level can see the menu on the dashboard. If you change it to ‘manage_options’, then you can still have

    define('DISALLOW_FILE_EDIT', true);

    on at the same time. However, it’s not generally a good idea to edit plugin code so lets just send a note to the author and hope they change it in the next release.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Simple Galleries doesn't show up in menu-bar’ is closed to new replies.