Support

Account

Home Forums Front-end Issues ACF Integration with Community Events Plugin (The Events Calendar) Reply To: ACF Integration with Community Events Plugin (The Events Calendar)

  • If that’s the template, there are no hooks there that will help you. Like I said, you’d need to talk to the developers of that plugin to see if they provide any hooks that let you make changes. I am not familiar with that plugin at all and I cannot really help with that. The only part I can help you with is the acf_form call, it should look something like this

    
    $settings = array(
      'id' => 'acf-group_59dd13c80be9e',
      'form' => false
    );
    acf_form($settings);
    

    also, note that you’ll need to figure out how to modify the header to include the call to acf_form_head() that’s mentioned in the acf_form() documentation.