Skip to content

Instantly share code, notes, and snippets.

@norcross
Last active June 10, 2016 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norcross/5619600 to your computer and use it in GitHub Desktop.
Save norcross/5619600 to your computer and use it in GitHub Desktop.
fix for GetResponse plugin
<?php
$styletype = get_option($this->GrOptionDbPrefix . 'style_id');
$comments = get_option($this->GrOptionDbPrefix . 'comment_on');
?>
<br />
<label class="GR_label" for="style_id">Style:</label>
<select class="GR_select" name="style_id">
<option value="1" <?php selected( $styletype, 1 ); ?>>Web Form</option>
<option value="0" <?php selected( $styletype, 0 ); ?>>WordPress</option>
</select>
@FranciscoHV
Copy link

that solves this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment