Hello,
Searching for a solution to allow only one listing per user, I found this topic
https://wpgeodirectory.com/support/topic/limit-listings-of-certain-cpts-to-1-per-user/
And it works fine! but, the only problem is that it works only when the listing is published directly by the user without a moderated review. That is, when I change the “New listing default status” to “Pending review” or “Draft”, the snippet stops working (it doesn’t change the user role)
I think that the problem is with the action used “geodir_after_save_listing”
The full code that I manage to make it work, following the topic founded, is this:
add_action(‘geodir_after_save_listing’, ‘change_user_role_when_submit’);
function change_user_role_when_submit( $last_post_id, $request_info ) {
if (geodir_get_current_posttype() == ‘gd_companies’) {
$current_user = wp_get_current_user();
$current_user_roles = $current_user->roles;
if (in_array(‘business-silver’, $current_user_roles)){
$current_user->add_role( ‘company_submited’ );
}
if (in_array(‘business-gold’, $current_user_roles)){
$current_user->add_role( ‘company_submited’ );
}
if (in_array(‘business-platinum’, $current_user_roles)){
$current_user->add_role( ‘company_submited’ );
}
}
}