This is for event manager on wordpress.
The following echos "Website:" even if the field is empty.
<?php
if ( !empty( $EM_Event->event_contact['Url'] ) ) {
echo $EM_Event->output(' ');
} else {
echo $EM_Event->output('<strong>Website:</strong> #_CONTACTURL{Url} ') ;
}
?> </p>
How can I get it to only echo "Website:" if there is a www.website.com entered but not echo "Website:" if there is no www.website.com entered?