Skip to content

Instantly share code, notes, and snippets.

@ckpicker
Created August 16, 2012 16:05
Show Gist options
  • Save ckpicker/3371372 to your computer and use it in GitHub Desktop.
Save ckpicker/3371372 to your computer and use it in GitHub Desktop.
<?php
if(tribe_get_custom_field('eventtype') == 'Webinar') {
?>
<input type="button" value="Click here to go somewhere" onclick="window.open('<?php echo tribe_get_custom_field('WebinarURLField'); ?>');" />
<?php
} elseif(tribe_get_custom_field('eventtype') == 'Lunch') {
?>
<input type="button" value="Click here to go somewhere" onclick="window.open('<?php echo tribe_get_custom_field('LunchURLField'); ?>');" />
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment