Now, you can go to file 'themes/noo-jobmonster/framework/admin/noo_member.php' search code
// Remove admin bar and redirect profile page to site interface
// if( self::get_setting('hide_admin_bar', true) ) {
// add_action( 'admin_init', array( $this, 'prevent_admin_access') );
// add_action( 'user_register', array( $this, 'hide_admin_bar_front') );
// add_action( 'wp_before_admin_bar_render', array( $this, 'stop_admin_bar_render') );
// add_action( 'after_setup_theme', array( $this, 'remove_admin_bar' ) );
// // Stop WooCommerce redirect to My Account page.
// add_filter( 'woocommerce_prevent_admin_access', '__return_false' );
// }
Change to (see attachment)
//Remove admin bar and redirect profile page to site interface
if( self::get_setting('hide_admin_bar', true) ) {
add_action( 'admin_init', array( $this, 'prevent_admin_access') );
add_action( 'user_register', array( $this, 'hide_admin_bar_front') );
add_action( 'wp_before_admin_bar_render', array( $this, 'stop_admin_bar_render') );
add_action( 'after_setup_theme', array( $this, 'remove_admin_bar' ) );
// Stop WooCommerce redirect to My Account page.
add_filter( 'woocommerce_prevent_admin_access', '__return_false' );
}
Attachments:
You must be
logged in to view attached files.