Version Description
N/A
Download this release
Release Info
Developer | yoffegil |
Plugin | Poll, Survey, Quiz, Slideshow, Form, Story & Landing Page |
Version | 2.3.0 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.3.0
- opinionstage-functions.php +3 -3
- opinionstage-polls.php +2 -2
- readme.txt +5 -1
opinionstage-functions.php
CHANGED
@@ -122,7 +122,7 @@ function opinionstage_add_poll_page() {
|
|
122 |
?>
|
123 |
<h1><strong>Opinion Stage Social Polls</strong></h1>
|
124 |
<h3><strong>To add a social poll to your post/page:</strong></h3>
|
125 |
-
<p>1) <?php echo opinionstage_create_link('Start a new poll', '
|
126 |
<p>2) From the poll page, copy the embed ID (located near the embed button)</p>
|
127 |
<p>3) From the WordPress post/page text editor, click on the social poll icon to open the insert poll dialog</p>
|
128 |
<img src="http://a5.opinionstage-res.cloudinary.com/image/upload/c_fit,h_294,w_474/v1332371481/mw4b8djjlljrwjy2w3iqa.jpg" />
|
@@ -165,7 +165,7 @@ function opinionstage_add_poll_popup() {
|
|
165 |
</p>
|
166 |
<br>
|
167 |
<p><strong>Haven't created a poll yet? / Don't know the poll ID?</strong></p>
|
168 |
-
<p>1) <?php echo opinionstage_create_link('Start a new poll', '
|
169 |
<p>2) From the poll page, copy the embed ID</p>
|
170 |
<?php echo opinionstage_insturctions_html_suffix(); ?>
|
171 |
</div>
|
@@ -176,7 +176,7 @@ function opinionstage_add_poll_popup() {
|
|
176 |
function opinionstage_insturctions_html_suffix() {
|
177 |
?>
|
178 |
<br>
|
179 |
-
Need more information? <?php echo opinionstage_create_link('click here', 'publishers/wordpress', ''); ?>. For support or feedback, please
|
180 |
<?php
|
181 |
}
|
182 |
/**
|
122 |
?>
|
123 |
<h1><strong>Opinion Stage Social Polls</strong></h1>
|
124 |
<h3><strong>To add a social poll to your post/page:</strong></h3>
|
125 |
+
<p>1) <?php echo opinionstage_create_link('Start a new poll', 'new_poll', ''); ?> or locate a poll from <?php echo opinionstage_create_link('your dashboard', 'dashboard', ''); ?></p>
|
126 |
<p>2) From the poll page, copy the embed ID (located near the embed button)</p>
|
127 |
<p>3) From the WordPress post/page text editor, click on the social poll icon to open the insert poll dialog</p>
|
128 |
<img src="http://a5.opinionstage-res.cloudinary.com/image/upload/c_fit,h_294,w_474/v1332371481/mw4b8djjlljrwjy2w3iqa.jpg" />
|
165 |
</p>
|
166 |
<br>
|
167 |
<p><strong>Haven't created a poll yet? / Don't know the poll ID?</strong></p>
|
168 |
+
<p>1) <?php echo opinionstage_create_link('Start a new poll', 'new_poll', ''); ?> or locate a poll from <?php echo opinionstage_create_link('your dashboard', 'dashboard', ''); ?></p>
|
169 |
<p>2) From the poll page, copy the embed ID</p>
|
170 |
<?php echo opinionstage_insturctions_html_suffix(); ?>
|
171 |
</div>
|
176 |
function opinionstage_insturctions_html_suffix() {
|
177 |
?>
|
178 |
<br>
|
179 |
+
Need more information? <?php echo opinionstage_create_link('click here', 'publishers/wordpress', ''); ?>. For support or feedback, please <?php echo opinionstage_create_link('contact us', 'contact_requests/new', ''); ?>
|
180 |
<?php
|
181 |
}
|
182 |
/**
|
opinionstage-polls.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Social Polls by OpinionStage
|
4 |
Plugin URI: http://www.opinionstage.com
|
5 |
Description: Adds a highly engaging social polling system to your blog. You can easily add a social poll to your blog post/page by clicking the social poll icon in the WordPress post/page text editor.
|
6 |
-
Version: 2.
|
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', '2.
|
15 |
define('OPINIONSTAGE_WIDGET_PLUGIN_NAME', 'Social Polls by OpinionStage');
|
16 |
define('OPINIONSTAGE_WIDGET_API_KEY', 'wp-v-poll');
|
17 |
define('OPINIONSTAGE_WIDGET_SHORTCODE', 'socialpoll');
|
3 |
Plugin Name: Social Polls by OpinionStage
|
4 |
Plugin URI: http://www.opinionstage.com
|
5 |
Description: Adds a highly engaging social polling system to your blog. You can easily add a social poll to your blog post/page by clicking the social poll icon in the WordPress post/page text editor.
|
6 |
+
Version: 2.3.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', '2.3.0');
|
15 |
define('OPINIONSTAGE_WIDGET_PLUGIN_NAME', 'Social Polls by OpinionStage');
|
16 |
define('OPINIONSTAGE_WIDGET_API_KEY', 'wp-v-poll');
|
17 |
define('OPINIONSTAGE_WIDGET_SHORTCODE', 'socialpoll');
|
readme.txt
CHANGED
@@ -103,12 +103,16 @@ Yes, just post the following syntax into any post/page: [socialpoll ID="xyz"], w
|
|
103 |
N/A
|
104 |
|
105 |
== Changelog ==
|
|
|
|
|
|
|
|
|
106 |
= Version 2.2.0 (28 Feb 2013) =
|
107 |
* Polls are now localized for Arabic
|
108 |
* Better support for sidebars (300px)
|
109 |
* Supporting longer side texts
|
110 |
= Version 2.1.0 (7 Feb 2013) =
|
111 |
-
* Polls are now displayed
|
112 |
* Additional built-in poll themes
|
113 |
* When clicking on poll participants, the user is now redirected to their social network profile
|
114 |
* Polls are now localized for Spanish
|
103 |
N/A
|
104 |
|
105 |
== Changelog ==
|
106 |
+
= Version 2.3.0 (12 March 2013) =
|
107 |
+
* Improved creation flow of polls
|
108 |
+
* Added basic report per poll in Opininion-Stage dashboard
|
109 |
+
* Added account report in Opininion-Stage dashboard
|
110 |
= Version 2.2.0 (28 Feb 2013) =
|
111 |
* Polls are now localized for Arabic
|
112 |
* Better support for sidebars (300px)
|
113 |
* Supporting longer side texts
|
114 |
= Version 2.1.0 (7 Feb 2013) =
|
115 |
+
* Polls are now displayed properly in mobile environments
|
116 |
* Additional built-in poll themes
|
117 |
* When clicking on poll participants, the user is now redirected to their social network profile
|
118 |
* Polls are now localized for Spanish
|