• I created a front end form with ACF Field Groups as I follow along in this tuts by Paul here: https://www.youtube.com/watch?v=iHx7krTqRN0

    There are fields that are not working when I submit the form:
    Post Title becomes (no-name)
    Post Title and Featured Image can enter empty input even if it is set as required.

    Please help

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    I have this same problem when uploading the featured images.

    Did you find any solution?

    Plugin Author Shabti Kaplan

    (@shabti)

    Have you updated to version 2.9.6?

    Hi @shabti,

    I am using the latest version (2.9.6).

    But even then the featured image is not saved.
    https://opcoesveganas.com.br/minha-conta/novo/

    Same problem here. The “Post” section is missing the options to associate post fields with ACF fields that the WPTuts video references from approx 9:56.

    Hi

    Put below code in functions.php and chnage field name: post_image its working fine.

    add_action(‘acf/save_post’, ‘move_image_to_post_thumbnail’);
    function move_image_to_post_thumbnail($post_id) {
    if (get_field(‘_thumbnail_id’, $post_id, false)) {
    // get unformatted value
    // we did it above too, no point formatting the value for this
    $image_id = get_field(‘_thumbnail_id’, $post_id, false);
    update_post_meta($post_id, ‘post_image’, $image_id);
    }
    }

    Same Problem on my side.

    Copied the code in the functions.php,… but there is an error right on saving the file,…
    Field name is standard post featured image in my case,… did not change it, am I right to do so?

    Any further idea?

    J?rg

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Post Title and Featured Image Not Working’ is closed to new replies.