Show only view at status of field within form
-
Hi first of all great plugin.
I have setup everything and working properly. The only issue I currently have is I have a field in gravity form which set’s the status of the form.
By default it is set to draft, an admin can set it to publish.
The user needs to login to edit the form and correctly sees his own forms and able to edit and view.So below example does indeed filter the filled in forms by user which match the entry value 15 which match “publish”. I want the user to see it and able to view but not edit those posts, but able to edit all other post which don’t match publish status.
`
//add_filter(‘filter_entries’,’show_only_approved’ );
function show_only_approved($entries) {
foreach ($entries as $entryKey => &$entryValue) {
if ($entryValue[“15”] == “publish”) {
unset($entries[$entryKey]);
}
}
return $entries;
}
`I think I need to alter above but am missing how I can alter above to match only the edit field.
Many thanks,
Kind regards
- The topic ‘Show only view at status of field within form’ is closed to new replies.