Poll, Survey, Quiz, Slideshow, Form, Story & Landing Page - Version 10.8.0

Version Description

N/A

Download this release

Release Info

Developer yoffegil
Plugin Icon 128x128 Poll, Survey, Quiz, Slideshow, Form, Story & Landing Page
Version 10.8.0
Comparing to
See all releases

Code changes from version 10.7.0 to 10.8.0

opinionstage-functions.php CHANGED
@@ -145,13 +145,13 @@ function opinionstage_add_poll_page() {
145
  <li><?php echo opinionstage_create_link('View Polls', 'dashboard', ''); ?></li>
146
  <li><?php echo opinionstage_create_link('Create a Set', 'sets/new', ''); ?></li>
147
  <li><?php echo opinionstage_create_link('View Sets', 'dashboard', 'tab=sets'); ?></li>
148
- <li><?php echo opinionstage_create_link('View Containers', 'dashboard', 'tab=containers'); ?></li>
149
- <li><a href="<?php _e(admin_url('admin.php?page=addpollstoallposts')) ?>">Add Polls to all posts</a></li>
150
  </ul>
151
  <h2>Help</h2>
152
  <ul class="os_links_list">
153
  <li><a href="http://blog.opinionstage.com/wordpress-poll-how-to-add-polls-to-wordpress-sites/?o=wp35e8" target="_blank">Help</a></li>
154
- <li><?php echo opinionstage_create_link('Showcase', 'showcase', ''); ?></li>
155
  <li><a href="https://opinionstage.zendesk.com/anonymous_requests/new" target="_blank">Contact Us</a></li>
156
  </ul>
157
  </div>
145
  <li><?php echo opinionstage_create_link('View Polls', 'dashboard', ''); ?></li>
146
  <li><?php echo opinionstage_create_link('Create a Set', 'sets/new', ''); ?></li>
147
  <li><?php echo opinionstage_create_link('View Sets', 'dashboard', 'tab=sets'); ?></li>
148
+ <li><?php echo opinionstage_create_link('View Placements', 'dashboard', 'tab=containers'); ?></li>
149
+ <li><a href="<?php _e(admin_url('admin.php?page=addpollstoallposts')) ?>">Add Polls to all Posts</a></li>
150
  </ul>
151
  <h2>Help</h2>
152
  <ul class="os_links_list">
153
  <li><a href="http://blog.opinionstage.com/wordpress-poll-how-to-add-polls-to-wordpress-sites/?o=wp35e8" target="_blank">Help</a></li>
154
+ <li><?php echo opinionstage_create_link('View Examples', 'showcase', ''); ?></li>
155
  <li><a href="https://opinionstage.zendesk.com/anonymous_requests/new" target="_blank">Contact Us</a></li>
156
  </ul>
157
  </div>
opinionstage-polls.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Polls by OpinionStage
4
  Plugin URI: http://www.opinionstage.com
5
  Description: Adds a highly engaging social polling system to your site. Easily add polls to any post/page or to your sites sidebar.
6
- Version: 10.7.0
7
  Author: OpinionStage.com
8
  Author URI: http://www.opinionstage.com
9
  */
@@ -11,7 +11,7 @@ Author URI: http://www.opinionstage.com
11
  /* --- Static initializer for Wordpress hooks --- */
12
 
13
  define('OPINIONSTAGE_SERVER_BASE', "www.opinionstage.com"); /* Don't include the protocol, added dynamically */
14
- define('OPINIONSTAGE_WIDGET_VERSION', '10.7.0');
15
  define('OPINIONSTAGE_WIDGET_PLUGIN_NAME', 'Polls by OpinionStage');
16
  define('OPINIONSTAGE_WIDGET_API_KEY', 'wp35e8');
17
  define('OPINIONSTAGE_WIDGET_SHORTCODE', 'socialpoll');
3
  Plugin Name: Polls by OpinionStage
4
  Plugin URI: http://www.opinionstage.com
5
  Description: Adds a highly engaging social polling system to your site. Easily add polls to any post/page or to your sites sidebar.
6
+ Version: 10.8.0
7
  Author: OpinionStage.com
8
  Author URI: http://www.opinionstage.com
9
  */
11
  /* --- Static initializer for Wordpress hooks --- */
12
 
13
  define('OPINIONSTAGE_SERVER_BASE', "www.opinionstage.com"); /* Don't include the protocol, added dynamically */
14
+ define('OPINIONSTAGE_WIDGET_VERSION', '10.8.0');
15
  define('OPINIONSTAGE_WIDGET_PLUGIN_NAME', 'Polls by OpinionStage');
16
  define('OPINIONSTAGE_WIDGET_API_KEY', 'wp35e8');
17
  define('OPINIONSTAGE_WIDGET_SHORTCODE', 'socialpoll');
opinionstage-widget.php CHANGED
@@ -34,11 +34,11 @@
34
  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
35
 
36
  <p>
37
- <label for="<?php echo $this->get_field_id('type'); ?>"><?php _e('Display:', OPINIONSTAGE_WIDGET_UNIQUE_ID); ?></label>
38
  <select class="widefat" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
39
- <option value="poll" <?php selected($type, 'poll') ?>>Display Poll</option>
40
- <option value="set" <?php selected($type, 'set') ?>>Display Set</option>
41
- <option value="container" <?php selected($type, 'container') ?>>Display Container</option>
42
  <option value="0" <?php selected($type, 0) ?>>Do not display anything (Disable)</option>
43
  </select>
44
  </p>
34
  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
35
 
36
  <p>
37
+ <label for="<?php echo $this->get_field_id('type'); ?>"><?php _e('Select content type:', OPINIONSTAGE_WIDGET_UNIQUE_ID); ?></label>
38
  <select class="widefat" name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
39
+ <option value="poll" <?php selected($type, 'poll') ?>>Poll</option>
40
+ <option value="set" <?php selected($type, 'set') ?>>Set</option>
41
+ <option value="container" <?php selected($type, 'container') ?>>Placement</option>
42
  <option value="0" <?php selected($type, 0) ?>>Do not display anything (Disable)</option>
43
  </select>
44
  </p>
opinionstage_add_polls_to_all_posts.php CHANGED
@@ -61,7 +61,7 @@
61
  <div id="opinionstage-head"></div>
62
  <div class="section">
63
  <form action="" method="POST"
64
- <h2>Add polls to all posts</h2>
65
  <hr />
66
  <h3>Select post types</h3>
67
  <div class="chkboxs" style="background-color: #FFF; border: 1px solid #DDD; padding: 5px 20px 5px 10px; display: inline-block;">
@@ -77,10 +77,10 @@
77
  <?php } ?>
78
  </div>
79
  <br />
80
- <h3><label for="pt-ct">Select content types</label></h3>
81
  <select name="opinionstage_aptap[content_types]" id="pt-ct">
82
  <option value="poll" <?php _e(os_get_option($opinionstage_aptap, 'content_types') == 'poll' ? 'selected="selected"' : '') ?>>Poll</option>
83
- <option value="container" <?php _e(os_get_option($opinionstage_aptap, 'content_types') == 'container' ? 'selected="selected"' : '') ?>>Container</option>
84
  <option value="set" <?php _e(os_get_option($opinionstage_aptap, 'content_types') == 'set' ? 'selected="selected"' : '') ?>>Set</option>
85
  </select>
86
  <br />
61
  <div id="opinionstage-head"></div>
62
  <div class="section">
63
  <form action="" method="POST"
64
+ <h2>Add Polls to all Posts</h2>
65
  <hr />
66
  <h3>Select post types</h3>
67
  <div class="chkboxs" style="background-color: #FFF; border: 1px solid #DDD; padding: 5px 20px 5px 10px; display: inline-block;">
77
  <?php } ?>
78
  </div>
79
  <br />
80
+ <h3><label for="pt-ct">Select content type</label></h3>
81
  <select name="opinionstage_aptap[content_types]" id="pt-ct">
82
  <option value="poll" <?php _e(os_get_option($opinionstage_aptap, 'content_types') == 'poll' ? 'selected="selected"' : '') ?>>Poll</option>
83
+ <option value="container" <?php _e(os_get_option($opinionstage_aptap, 'content_types') == 'container' ? 'selected="selected"' : '') ?>>Placement</option>
84
  <option value="set" <?php _e(os_get_option($opinionstage_aptap, 'content_types') == 'set' ? 'selected="selected"' : '') ?>>Set</option>
85
  </select>
86
  <br />
readme.txt CHANGED
@@ -130,6 +130,8 @@ Yes, just post the following syntax into any post/page: [socialpoll ID="xyz"], w
130
  N/A
131
 
132
  == Changelog ==
 
 
133
  = Version 10.7.0 =
134
  * New options for adding polls or sets to all posts
135
  = Version 10.6.0 =
130
  N/A
131
 
132
  == Changelog ==
133
+ = Version 10.8.0 =
134
+ * Texts changes
135
  = Version 10.7.0 =
136
  * New options for adding polls or sets to all posts
137
  = Version 10.6.0 =