Hello @mrrontour
If you want that only the administrators can edit loading page’s settings, please, follow the steps below:
1. Open the “/wp-content/plugins/loading-page/loading-page.php” file with the text editor of your choice.
2. Go to the piece of code:
add_options_page('Loading Page', 'Loading Page', 'edit_posts', basename(__FILE__), 'loading_page_settings_page');
3. And edit it as follows:
add_options_page('Loading Page', 'Loading Page', 'manage_options', basename(__FILE__), 'loading_page_settings_page');
and that’s all.
Best regards.
Hello @mrrontour
I’ve included the modification in the official distribution of the plugin.
Best regards.
Cool, that’s great. Thank you very much.