Support

Account

Home Forums ACF PRO If field is blank can it not show? Reply To: If field is blank can it not show?

  • You mean you do not want it to show on the front-end correct?

    You can achieve by using:

    $facebook_link = get_field(‘facebook_link’);
    if($facebook_link) {
    echo $facebook_link;
    }