Support

Account

Home Forums ACF PRO Custom titles not working acf_form false Reply To: Custom titles not working acf_form false

  • Have you tried specifying the post ID when getting the fields you want to use for your title?

    Instead of

    
    $marca = get_field('brand');
    

    Try

    
    $marca = get_field('brand', $post_id);