Hello,
thank you for your reply.
Hm i have added it before (forgot to have it on the code i gave to the topic) but nothing happened. I tested again with the code below but nothing works.
<?php
acf_form_head();
get_header();
?>
<div class="container">
<?php
$settings = array(
'id' => 'photos_form',
'post_id' => 'new_post',
'new_post' => ['post_type' => 'photos', 'post_status' => 'draft'],
'field_groups' => array("group_6025117548b3f"),
'fields' => false,
'submit_value' => __("Submit", 'acf'),
'label_placement' => 'top',
'html_submit_button' => '<input type="submit" id="submitbtn" class="acf-button button primary_btn" value="%s" />',
'html_submit_spinner' => '<span class="acf-spinner"></span>',
'updated_message' => '',
'html_after_fields' => '',
);
acf_form($settings);?>
</div>
<?php get_footer(); ?>
Is there any mistake in that code? Didn’t understand something in the correct way?
Thank you again.
George