i create user role Field want all user who admin are approved for every post
https://imgur.com/WP3b1KP
Hi there,
Your explanation is not very clear, you screenshot shows that you have a repeater field assigned to users, which posts would you like to see approved?
I am looking forward to helping you.
thanks for your help
i have post type (programs)
http://elhussini.com/themes/gym/?programs=02-muscle-build-pro try to Enroll
when user enroll i send pro data to his profile i want to calculat number of approver to every pro
Hi @elhussini
To get the number or rows of approved entries on your repeater, you can make use of the following code:
$rows = get_field('repeater_field_name', 'user_'.{user_id}); // get all the rows
$number_of_user_rows = count($rows);
I hope this info helps. Thank you.