Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress plugin 'get custom content'; missing default content option Reply To: WordPress plugin 'get custom content'; missing default content option

#191542
Alen
Participant

In your template do:

if ( !isset( $_GET['utm_source'] ) ) {
  echo 'Some Default Data';
}
else {
  echo do_shortcode('[bg_gcc variable="utm_source"]');
}

Tested and working.