Home / Admin / Grant Wholesale Lead Approval for a Certain User Role
Duplicate Snippet

Embed Snippet on Your Site

Grant Wholesale Lead Approval for a Certain User Role

Allow other user roles e.g. "Editor" to "Approve" or "Reject" wholesale applications from the WP Dashboard -> Users.

Code Preview
php
<?php
add_filter('wwlc_allowed_user_roles', function($allowed_roles) {
    $allowed_roles[] = 'editor'; // Add your custom role here
    return $allowed_roles;
});

Comments

Add a Comment