Support

Account

Forum Replies Created

  •    $post = array(
    	        'post_status'  => 'publish' ,
    	        'post_title'  => 'some-title',
    	        'post_type'  => 'some-post-type',
                     'return' => 'custom url (www.whatever.com) or home_url'
    	    ); 

    From the ACF documentation

    return The URL to be redirected to after the post is created / updated. Defaults to the current URL with an extra GET parameter called updated=true. A special placeholder of %post_url% will be converted to post’s permalink (handy if creating a new post)!

  • <script>
    $('#acf-field-YourSelectField').on('change', function() {
    document.getElementById('TheIdOfTheDivYouWantToShowTheSelectedValue').value = $(this).val();
    });
    <script>

    Then i set up my ACF select options in my group like so.

    [email protected] : Supplier A
    [email protected] : Supplier B
    [email protected] : Supplier C
    [email protected] : Supplier D

    The Javascript will return the email address and not the Supplier A.

    You can now use the new found value and echo it in a form recipient.

    Hope this helps someone.

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