Loading...

Reply To: Different user capability for Verify Users admin page

Home Forums Pie-Register 2.0 Support Different user capability for Verify Users admin page Reply To: Different user capability for Verify Users admin page

#10004596
Pie Register
Participant

Thanks for the feature request,. we will definitely work on this for our future version.. I think you can try something like this in your theme’s function.php

global $pie_register;
remove_action( 'admin_menu',  array($pie_register,'AddPanel') );
add_action('admin_menu','pr_custom_admin_menu');
function pr_custom_admin_men(){
//some code here
}

hope it helps

Thanks