Hi! I saw in another support thread that you found this solution.
I can post the same solution here and you can try it and post any remaining questions here. The code below can be added in for example the functions.php
file in your theme.
<?php
// Allow only the users specified in $allowed_users to show the history page, the history widget on the dashboard, or the history settings page
add_filter( 'simple_history/show_dashboard_page', 'function_show_history_dashboard_or_page' );
add_filter( 'simple_history/show_dashboard_widget', 'function_show_history_dashboard_or_page' );
add_filter( 'simple_history/show_settings_page', 'function_show_history_dashboard_or_page' );
add_filter( 'simple_history/add_admin_bar_menu_item', 'function_show_history_dashboard_or_page' );
add_filter( 'simple_history/add_admin_bar_network_menu_item', 'function_show_history_dashboard_or_page' );
function function_show_history_dashboard_or_page( $show ) {
$allowed_users = array(
'[email protected]',
'[email protected]',
);
$user = wp_get_current_user();
if ( ! in_array( $user->user_email, $allowed_users ) ) {
$show = false;
}
return $show;
}