I apologize if this is answered elsewhere, but I'm having an issue with ACF code. I want the client to be able to add a portfolio site link (if applicable) to the artist page and the link would say "View Artist's Website" and the link would take the user to the artist's site in a new window. How would I go about not making this text not visible, unless there was a url entered into the custom field on the post? Here's the code:
<p><?php the_field('contact_phone_number'); ?><br />
or <a href="mailto:<?php the_field('contact_email'); ?>"><?php the_field('contact_email'); ?></a><br />
View <a href="<?php the_field('artist_website'); ?>" target="_blank">Artist's Website</a></p>
Thanks in advance!