Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jeroen Schmit

    (@slimndap)

    You could try adding something like this to the functions.php of your theme:

    function wpt_event_venue( $venue, $event) {
      if(empty($venue)) {
        $venue = 'My default venue';
      }
      return $venue;
    
    }
    add_filter('wpt_event_venue', 'set_default_venue', 10, 2);
    Thread Starter olivierk

    (@olivierk)

    Thanks for the reply Jeroen but that code within my functions file does not seem to be doing anything unfortunately….

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Default Value for Event Venue?’ is closed to new replies.