Support

Account

Forum Replies Created

  • Thanks wstaley but im gonna go with custom form and then gonna use this function to save the data – update_field();

  • <div class="large-text">
    <?php the_field('field_name'); ?>
    </div>

    or did i get your question all wrong 🙂

  • function my_function_select($field) {
    $post_id = 10;
    $field_id= ‘position’;
    $value = get_field($field_id, $post_id);
    $choices = $field[‘position’];
    $field[‘position’] = array_diff($choices, $value);
    return $field;
    }
    add_filter(‘acf/load_field/name=position’, ‘my_function_select’);

    $post_id=10; = custom post type where i have select dropdown (10 is actual id of one of the posts where i have the select…)
    $field_id=’position’; = name of the select field

    Can this be an issue because im using custom post types?

  • Thanks for your replay!

    Im having a problem cause the function halts on get_field line…

    My select field is called “position” and field group is “doctors” and its called on custom post type so the user can select “order” of the items on the page.

    $value = get_field(“position”,$post_id);

    i tried with variations from http://www.advancedcustomfields.com/resources/get_field/ but it keep hanging.

    Any help would be appreciated.

    Alan

Viewing 4 posts - 1 through 4 (of 4 total)