Support

Account

Home Forums General Issues Front End Form – Single Use Reply To: Front End Form – Single Use

  • Hi @kahil,

    I believe you can add a select field to the post (concept art project) and then check it if the select field value is “approved” or “declined” like this:

    if( get_field('select_field_name') != "approved" ){
        acf_form();
    }

    I hope this helps.