Version Description
- Added support WordPress 5.2.x
- Removed support for PHP versions lower than 5.2
Download this release
Release Info
Developer | opinionstage |
Plugin | Poll, Survey, Quiz, Slideshow, Form, Story & Landing Page |
Version | 19.6.21 |
Comparing to | |
See all releases |
Code changes from version 19.6.20 to 19.6.21
- admin/views/deactivate-feedback-form.php +10 -2
- gutenberg/init.php +3 -2
- opinionstage-polls.php +1 -1
- plugin.php +75 -40
- readme.txt +48 -109
admin/views/deactivate-feedback-form.php
CHANGED
@@ -34,6 +34,11 @@ global $wp_version;
|
|
34 |
$editor = 'Gutenberg';
|
35 |
}
|
36 |
}
|
|
|
|
|
|
|
|
|
|
|
37 |
?>
|
38 |
<style type="text/css">
|
39 |
.os-feedback-modal-wrapper {
|
@@ -127,6 +132,8 @@ mixpanel.init("73bec82504e0f14a7dba16aebd26b97d",{
|
|
127 |
});
|
128 |
|
129 |
$(elemSend).click(function(){
|
|
|
|
|
130 |
|
131 |
if( jQuery('input[name=reason]:checked', $(elemModal)).length > 0 ){
|
132 |
var reason = jQuery('input[name=reason]:checked', $(elemModal)).val();
|
@@ -166,9 +173,11 @@ mixpanel.init("73bec82504e0f14a7dba16aebd26b97d",{
|
|
166 |
$ospItemCount = '<?php echo $item_count; ?>';
|
167 |
$pluginVersion="<?php echo OPINIONSTAGE_WIDGET_VERSION ?>";
|
168 |
$oseditor = '<?php echo $editor; ?>';
|
|
|
|
|
169 |
|
170 |
mixpanel.track("WordPress Opinion Stage Disconnect",
|
171 |
-
{"reason": reason, "details": reason ,"url": window.location.href,"opinionStagePluginConnect": $opswConnected, "wpVersion": $ospVersion, "osVersion": $pluginVersion, "theme": $ospTheme, "pluginList": $ospPluginList, "email": $ospEmail, 'totalItem': $ospItemCount, 'editor': $oseditor, },
|
172 |
function(){
|
173 |
window.location = elemOpen.find('a').attr('href');
|
174 |
}
|
@@ -191,7 +200,6 @@ mixpanel.init("73bec82504e0f14a7dba16aebd26b97d",{
|
|
191 |
$('input[type=text]', $(elemModal)).hide();
|
192 |
$(this).parent().find('input[type=text]').show();
|
193 |
});
|
194 |
-
|
195 |
});
|
196 |
</script>
|
197 |
|
34 |
$editor = 'Gutenberg';
|
35 |
}
|
36 |
}
|
37 |
+
// PHP Version
|
38 |
+
$currentPhpVersion = phpversion();
|
39 |
+
|
40 |
+
// Current Plugin Name
|
41 |
+
$plugin_name = "Poll, Survey, Form & Quiz Maker by OpinionStage";
|
42 |
?>
|
43 |
<style type="text/css">
|
44 |
.os-feedback-modal-wrapper {
|
132 |
});
|
133 |
|
134 |
$(elemSend).click(function(){
|
135 |
+
var plugin_name = '<?php echo $plugin_name; ?>';
|
136 |
+
var current_plugin_name = plugin_name;
|
137 |
|
138 |
if( jQuery('input[name=reason]:checked', $(elemModal)).length > 0 ){
|
139 |
var reason = jQuery('input[name=reason]:checked', $(elemModal)).val();
|
173 |
$ospItemCount = '<?php echo $item_count; ?>';
|
174 |
$pluginVersion="<?php echo OPINIONSTAGE_WIDGET_VERSION ?>";
|
175 |
$oseditor = '<?php echo $editor; ?>';
|
176 |
+
$osPhpVersion = '<?php echo $currentPhpVersion; ?>';
|
177 |
+
$currentPluginName = current_plugin_name;
|
178 |
|
179 |
mixpanel.track("WordPress Opinion Stage Disconnect",
|
180 |
+
{"reason": reason, "details": reason ,"url": window.location.href,"opinionStagePluginConnect": $opswConnected,"PhpVersion":$osPhpVersion,"CurrentPluginName":$currentPluginName, "wpVersion": $ospVersion, "osVersion": $pluginVersion, "theme": $ospTheme, "pluginList": $ospPluginList, "email": $ospEmail, 'totalItem': $ospItemCount, 'editor': $oseditor, },
|
181 |
function(){
|
182 |
window.location = elemOpen.find('a').attr('href');
|
183 |
}
|
200 |
$('input[type=text]', $(elemModal)).hide();
|
201 |
$(this).parent().find('input[type=text]').show();
|
202 |
});
|
|
|
203 |
});
|
204 |
</script>
|
205 |
|
gutenberg/init.php
CHANGED
@@ -4,7 +4,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
4 |
exit;
|
5 |
}
|
6 |
// Adding a block opinion-stage for below elements
|
7 |
-
add_filter( 'block_categories',
|
|
|
8 |
return array_merge(
|
9 |
$categories,
|
10 |
array(
|
@@ -14,7 +15,7 @@ add_filter( 'block_categories', function( $categories, $post ) {
|
|
14 |
),
|
15 |
)
|
16 |
);
|
17 |
-
}
|
18 |
|
19 |
|
20 |
/**
|
4 |
exit;
|
5 |
}
|
6 |
// Adding a block opinion-stage for below elements
|
7 |
+
add_filter( 'block_categories', 'osplugin_guten_blockCategories', 10, 2 );
|
8 |
+
function osplugin_guten_blockCategories( $categories, $post ) {
|
9 |
return array_merge(
|
10 |
$categories,
|
11 |
array(
|
15 |
),
|
16 |
)
|
17 |
);
|
18 |
+
}
|
19 |
|
20 |
|
21 |
/**
|
opinionstage-polls.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage (Deprecated)
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
-
Version: 19.6.
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage (Deprecated)
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
+
Version: 19.6.21
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
-
Version: 19.6.
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
@@ -24,7 +24,7 @@ if ( defined('WP_DEBUG') && true === WP_DEBUG ) {
|
|
24 |
}
|
25 |
}
|
26 |
|
27 |
-
define('OPINIONSTAGE_WIDGET_VERSION', '19.6.
|
28 |
|
29 |
define('OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage');
|
30 |
|
@@ -56,48 +56,83 @@ define('OPINIONSTAGE_VIEW_ITEM_SLUG', 'opinionstage-view-my-items');
|
|
56 |
|
57 |
define('OPINIONSTAGE_LOGIN_CALLBACK_SLUG', 'opinionstage-login-callback');
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
}
|
64 |
-
}
|
65 |
-
function opinionstage_plugin_activate() {
|
66 |
-
// all good. delete old file
|
67 |
-
if( file_exists(__DIR__ . '/opinionstage-polls.php') ){
|
68 |
-
unlink(__DIR__ . '/opinionstage-polls.php');
|
69 |
-
}
|
70 |
-
}
|
71 |
-
register_activation_hook( __FILE__, 'opinionstage_plugin_activate' );
|
72 |
-
add_action( 'init', 'opinionstage_plugin_activate' );
|
73 |
-
add_action( 'activated_plugin', 'opinionstage_plugin_activated' );
|
74 |
-
|
75 |
-
require_once( plugin_dir_path( __FILE__ ).'includes/opinionstage-functions.php' );
|
76 |
-
|
77 |
-
// Check if another OpinionStage plugin already installed and display warning message.
|
78 |
-
if (opinionstage_check_plugin_available('opinionstage_popup')) {
|
79 |
-
add_action('admin_notices', 'opinionstage_other_plugin_installed_warning');
|
80 |
} else {
|
81 |
-
|
82 |
-
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
-
if
|
86 |
-
|
87 |
-
|
88 |
} else {
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
92 |
require( plugin_dir_path( __FILE__ ).'public/init.php' );
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
-
// Block editor since 5.0.
|
96 |
-
$block_editor_oswp = version_compare( $GLOBALS['wp_version'], '5.0-beta', '>' );
|
97 |
-
if( function_exists( 'is_gutenberg_page' ) || $block_editor_oswp) {
|
98 |
-
require( plugin_dir_path( __FILE__ ).'gutenberg/init.php' );
|
99 |
-
}
|
100 |
-
add_action('widgets_init', 'opinionstage_init_widget');
|
101 |
-
add_action('plugins_loaded', 'opinionstage_init');
|
102 |
}
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage
|
4 |
Plugin URI: https://www.opinionstage.com
|
5 |
Description: Add a highly engaging poll, survey, quiz or contact form builder to your site. You can add the poll, survey, quiz or form to any post/page or to the sidebar.
|
6 |
+
Version: 19.6.21
|
7 |
Author: OpinionStage.com
|
8 |
Author URI: https://www.opinionstage.com
|
9 |
Text Domain: social-polls-by-opinionstage
|
24 |
}
|
25 |
}
|
26 |
|
27 |
+
define('OPINIONSTAGE_WIDGET_VERSION', '19.6.21');
|
28 |
|
29 |
define('OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage');
|
30 |
|
56 |
|
57 |
define('OPINIONSTAGE_LOGIN_CALLBACK_SLUG', 'opinionstage-login-callback');
|
58 |
|
59 |
+
if ( ! version_compare( PHP_VERSION, '5.2', '>=' ) ) {
|
60 |
+
add_action( 'admin_notices', 'opinionstage_fail_php_version' );
|
61 |
+
} elseif ( ! version_compare( get_bloginfo( 'version' ), '4.7', '>=' ) ) {
|
62 |
+
add_action( 'admin_notices', 'opinionstage_fail_wp_version' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
} else {
|
64 |
+
// Check if active plugin file is plugin.php on plugin activate hook
|
65 |
+
function opinionstage_plugin_activated($plugin) {
|
66 |
+
if( $plugin == plugin_basename( __FILE__ ) ) {
|
67 |
+
exit( wp_redirect("admin.php?page=".OPINIONSTAGE_GETTING_STARTED_SLUG) );
|
68 |
+
}
|
69 |
+
}
|
70 |
+
function opinionstage_plugin_activate() {
|
71 |
+
// all good. delete old file
|
72 |
+
if( file_exists(plugin_dir_path( __FILE__ ) . '/opinionstage-polls.php') ){
|
73 |
+
unlink(plugin_dir_path( __FILE__ ) . '/opinionstage-polls.php');
|
74 |
+
}
|
75 |
+
}
|
76 |
+
register_activation_hook( __FILE__, 'opinionstage_plugin_activate' );
|
77 |
+
add_action( 'init', 'opinionstage_plugin_activate' );
|
78 |
+
add_action( 'activated_plugin', 'opinionstage_plugin_activated' );
|
79 |
+
require_once( plugin_dir_path( __FILE__ ).'includes/opinionstage-functions.php' );
|
80 |
|
81 |
+
// Check if another OpinionStage plugin already installed and display warning message.
|
82 |
+
if (opinionstage_check_plugin_available('opinionstage_popup')) {
|
83 |
+
add_action('admin_notices', 'opinionstage_other_plugin_installed_warning');
|
84 |
} else {
|
85 |
+
require_once( plugin_dir_path( __FILE__ ).'includes/opinionstage-utility-functions.php' );
|
86 |
+
require_once( plugin_dir_path( __FILE__ ).'includes/opinionstage-article-placement-functions.php' );
|
87 |
+
require_once( plugin_dir_path( __FILE__ ).'includes/opinionstage-sidebar-widget.php' );
|
88 |
+
|
89 |
+
if ( (function_exists('wp_doing_ajax') && wp_doing_ajax()) || (defined('DOING_AJAX')) ) {
|
90 |
+
require_once( plugin_dir_path( __FILE__ ).'includes/opinionstage-ajax-functions.php' );
|
91 |
require( plugin_dir_path( __FILE__ ).'public/init.php' );
|
92 |
+
} else {
|
93 |
+
if ( is_admin() ) {
|
94 |
+
require( plugin_dir_path( __FILE__ ).'admin/init.php' );
|
95 |
+
} else {
|
96 |
+
require( plugin_dir_path( __FILE__ ).'public/init.php' );
|
97 |
+
}
|
98 |
}
|
99 |
+
// Block editor since 5.0.
|
100 |
+
$block_editor_oswp = version_compare( $GLOBALS['wp_version'], '5.0-beta', '>' );
|
101 |
+
if( function_exists( 'is_gutenberg_page' ) || $block_editor_oswp) {
|
102 |
+
require( plugin_dir_path( __FILE__ ).'gutenberg/init.php' );
|
103 |
+
}
|
104 |
+
add_action('widgets_init', 'opinionstage_init_widget');
|
105 |
+
add_action('plugins_loaded', 'opinionstage_init');
|
106 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
108 |
+
/**
|
109 |
+
* Opinionstage admin notice for minimum PHP version.
|
110 |
+
*
|
111 |
+
* Warning when the site doesn't have the minimum required PHP version.
|
112 |
+
*
|
113 |
+
* @since 1.0.0
|
114 |
+
*
|
115 |
+
* @return void
|
116 |
+
*/
|
117 |
+
function opinionstage_fail_php_version() {
|
118 |
+
/* translators: %s: PHP version */
|
119 |
+
$message = sprintf( esc_html__( 'Poll, Survey, Form & Quiz Maker by OpinionStage requires PHP version %s+, plugin is currently NOT RUNNING.', 'opinionstage' ), '5.2' );
|
120 |
+
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
|
121 |
+
echo wp_kses_post( $html_message );
|
122 |
+
}
|
123 |
+
|
124 |
+
/**
|
125 |
+
* Opinionstage admin notice for minimum WordPress version.
|
126 |
+
*
|
127 |
+
* Warning when the site doesn't have the minimum required WordPress version.
|
128 |
+
*
|
129 |
+
* @since 1.5.0
|
130 |
+
*
|
131 |
+
* @return void
|
132 |
+
*/
|
133 |
+
function opinionstage_fail_wp_version() {
|
134 |
+
/* translators: %s: WordPress version */
|
135 |
+
$message = sprintf( esc_html__( 'Poll, Survey, Form & Quiz Maker by OpinionStage requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING.', 'opinionstage' ), '4.7' );
|
136 |
+
$html_message = sprintf( '<div class="error">%s</div>', wpautop( $message ) );
|
137 |
+
echo wp_kses_post( $html_message );
|
138 |
+
}
|
readme.txt
CHANGED
@@ -1,116 +1,52 @@
|
|
1 |
=== Poll, Survey, Form & Quiz Maker by OpinionStage ===
|
2 |
Contributors: OpinionStage.com
|
3 |
Donate link: https://www.opinionstage.com
|
4 |
-
Tags: poll, quiz, survey, form
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 5.1
|
7 |
-
Stable tag: 19.6.
|
|
|
8 |
|
9 |
-
Add a
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
|
14 |
|
15 |
-
Check out
|
16 |
-
|
17 |
-
<a href="https://www.opinionstage.com/poll?o=wp35e8" target="_blank">Poll Maker</a> | <a href="https://www.opinionstage.com/templates?utf8=✓&types%5B%5D=poll&o=wp35e8" target="_blank">Poll Examples</a>
|
18 |
-
<a href="https://www.opinionstage.com/quiz?o=wp35e8" target="_blank">Quiz Maker</a> | <a href="https://www.opinionstage.com/templates?utf8=%E2%9C%93&types%5B%5D=personality_quiz&o=wp35e8" target="_blank">Quiz Examples</a>
|
19 |
-
<a href="https://www.opinionstage.com/survey?o=wp35e8" target="_blank">Survey Maker</a> | <a href="https://www.opinionstage.com/templates?utf8=%E2%9C%93&types%5B%5D=survey&o=wp35e8" target="_blank">Survey Examples</a>
|
20 |
-
<a href="https://www.opinionstage.com/form?o=wp35e8" target="_blank">Form Maker</a> | <a href="https://www.opinionstage.com/templates?utf8=%E2%9C%93&types%5B%5D=form&o=wp35e8" target="_blank">Form Examples</a>
|
21 |
|
22 |
= Why use Opinion Stage? =
|
23 |
|
24 |
-
* Boost engagement & traffic - add a poll, survey or quiz to your posts/pages to increases participation, time-on-site & page views. Increase social sharing and viral distribution
|
25 |
-
* Gather more qualified leads - integrate a lead form inside the poll, quiz or survey. This will not only produce more leads, but will also produce qualified leads, as the leads will be associated with the answers of the users.
|
26 |
-
* Generate revenue - take advantage of the high engagement rates to increase revenue from ads inside and outside of the
|
27 |
-
* Extract insights - get more insights using interactive polls & surveys designed to maximize participation. Extract actionable insights with
|
28 |
-
|
29 |
-
= Main Poll WordPress Plugin Features: =
|
30 |
-
|
31 |
-
*
|
32 |
-
*
|
33 |
-
*
|
34 |
-
*
|
35 |
-
*
|
36 |
-
*
|
37 |
-
*
|
38 |
-
*
|
39 |
-
*
|
40 |
-
*
|
41 |
-
*
|
42 |
-
*
|
43 |
-
*
|
44 |
-
*
|
45 |
-
*
|
46 |
-
|
47 |
-
* Export the poll results to an xls or csv file
|
48 |
-
|
49 |
-
= Main Quiz WordPress Plugin Features: =
|
50 |
-
|
51 |
-
* Create a personality quiz, trivia quiz, score quiz, true/false quiz, assessment quiz, multiple-choice quiz or outcome quiz
|
52 |
-
* Integrate images & videos in the quiz from your computer, from a link or using online search capabilities
|
53 |
-
* Set the main image that is shared when users share the quiz on social networks
|
54 |
-
* Configure to request users to like your facebook page before they view the quiz results
|
55 |
-
* Configure the facebook & twitter sharing message that is displayed when users share the quiz
|
56 |
-
* Configure webhooks for sending all the information gathered in the quiz to any 3rd party application
|
57 |
-
* Integrate ads in the quiz interface to increase your sites ad-revenue potential
|
58 |
-
* Add pixel tracking to the quiz to optimize your ad campaigns
|
59 |
-
* View high level statistics of your quiz including quiz impressions, quiz starts, quiz completions, average time spend on quiz, # of engagements on the quiz & # of leads generated while users participated in the quiz
|
60 |
-
* View the detailed results of each quiz question
|
61 |
-
* View a drop-off report that shows the percentage of users that voted in each quiz question
|
62 |
-
* View a detailed response report that includes all the details of each quiz submission (e.g. detailed answers, timestamp, etc)
|
63 |
-
* Export the quiz results to a xls or csv file
|
64 |
-
* Detailed logic of personality quizzes, including a scoring system for sides and formula for calculating the quiz outcome
|
65 |
-
* Detailed logic for trivia quizzes, including setting the correct answers, displaying explanations after selecting answers, calculating the results and various quiz result display options
|
66 |
-
* Support for randomizing answers in each quiz question to improve validity of results
|
67 |
-
* Support for call-to-action buttons at the end of the quiz
|
68 |
-
* Support sending to different landing pages based on the quiz outcome
|
69 |
-
|
70 |
-
= Main Survey WordPress Plugin Features: =
|
71 |
-
|
72 |
-
* Integrate images & videos to make the survey appealing & engaging. You can either upload images from your computer or use online search to locate free-to-use images
|
73 |
-
* Support both single selection and multiple selection questions and supports allowing users to add their own answer
|
74 |
-
* Support open ended questions of different types
|
75 |
-
* Supports informative cards that can be displayed inside the survey
|
76 |
-
* Supports a call-to-action action at the end of the survey
|
77 |
-
* Supports branch logic that lets you determine which question is asked next based on the answer to the last question
|
78 |
-
* Supports setting variables that can be set based on answers of users (for example saving their name to use in following questions)
|
79 |
-
* Supports social integrations, such as adding a social sharing bar, integrations with facebook like box and facebook comments and twitter message customization
|
80 |
-
* Supports sending submissions via email to the survey creator
|
81 |
-
* Supports webhooks for sending all the gathered information to a 3rd party tool
|
82 |
-
* Naive integrations with mailchimp & hubspot
|
83 |
-
* Integration with pixels to optimize ad-campaigns focused on getting relevant audience to the survey
|
84 |
-
* Overview statistics that include number of views, starts, completions, # of engagement, average time on survey and # of leads gathered
|
85 |
-
* Detailed response table, each response with all the answers and meta data such as timestamp of submission
|
86 |
-
* Graphic display (pie chart & bar chart) of answers to each one of the questions
|
87 |
-
* Drop off report to help optimize the survey for maximum completion rates
|
88 |
-
|
89 |
-
= Main Form WordPress Plugin Features: =
|
90 |
-
|
91 |
-
* Supports Short & long text fields
|
92 |
-
* Supports Email fields including 2 approval checkboxes
|
93 |
-
* Support phone number field
|
94 |
-
* Supports drop-down field
|
95 |
-
* Configure to send an email to form creator on each submission
|
96 |
-
* Support sending all the gathered information to a 3rd party application using webhooks
|
97 |
-
* Supports native integrations with mailchimp and hubspot
|
98 |
-
* View statistics on # of views vs. # of submissions
|
99 |
-
* View all submissions including the all field entries and meta data such as timestamp of submission
|
100 |
-
|
101 |
-
= Placements: =
|
102 |
-
|
103 |
-
* Sidebar placement - add to the site sidebar using a dedicated Opinion Stage sidebar widget
|
104 |
-
* Popup placement - popup when users enter or exit your site using a highly configurable popup component
|
105 |
-
* Articles placement - display at the end of all your posts/pages
|
106 |
-
|
107 |
= Language support =
|
108 |
|
109 |
Opinion Stage supports over 42 languages, missing a language? Let us know!
|
110 |
|
111 |
= About Opinion Stage: =
|
112 |
|
113 |
-
Opinion Stage is a powerful & easy-to-use interactive content (e.g. poll, quiz, survey, forms, etc) creation service. Opinion Stages' highly engaging content formats are used to boost engagement, gather leads, generate revenue and to extract actionable insights. Opinion Stage works with 100,000+
|
114 |
|
115 |
== Installation ==
|
116 |
|
@@ -119,43 +55,46 @@ Opinion Stage is a powerful & easy-to-use interactive content (e.g. poll, quiz,
|
|
119 |
|
120 |
== Frequently Asked Questions ==
|
121 |
|
122 |
-
=
|
123 |
|
124 |
-
Yes, all
|
125 |
|
126 |
-
= What interactive
|
127 |
|
128 |
-
With Opinion Stage you can create the following
|
129 |
|
130 |
= What is the difference between a Poll and a Survey =
|
131 |
|
132 |
Polls include one question and are used for getting a quick answer on a question. Polls are often used for gathering opinions, getting feedback, running contents & competitions and generating engagement. Surveys include multiple questions of different types. Surveys are often used to gather feedback and insights. If you are still unsure whether to use a poll or a survey, contact our support team and we'll be happy to help.
|
133 |
|
134 |
-
= What customization options do you offer? =
|
135 |
|
136 |
-
Opinion Stage offers many built-in customization options such as selecting the color theme, font and sizes.
|
137 |
|
138 |
|
139 |
== Other Notes ==
|
140 |
|
141 |
== Screenshots ==
|
142 |
|
143 |
-
1. **Poll image layout** - example of integrating images in the poll answers
|
144 |
-
2. **Poll standard layout** -
|
145 |
3. **poll head to head layout** - example of a head-to-head layout poll
|
146 |
-
4. **Trivia quiz** - example of
|
147 |
-
5. **Personality quiz** - example of a personality quiz.
|
148 |
-
6. **Content creation dashboard** - example of the Opinion Stage interactive content (e.g. poll, quiz, survey
|
149 |
7. **Lead form** - example of gathering quality leads while users participate in the polls, quizzes & surveys
|
150 |
8. **Report** - example of a poll report screen that includes advanced analysis of results
|
151 |
-
9. **Templates** - dashboard that includes
|
152 |
-
10. **Popup placement** - display your
|
153 |
|
154 |
== Upgrade Notice ==
|
155 |
|
156 |
N/A
|
157 |
|
158 |
== Changelog ==
|
|
|
|
|
|
|
159 |
= 19.6.20 =
|
160 |
* bugfixes
|
161 |
= 19.6.19 =
|
@@ -688,4 +627,4 @@ N/A
|
|
688 |
= 1.0.1 =
|
689 |
* Improvements in the poll embed flow to ease insertion of polls
|
690 |
= 1.0.0 =
|
691 |
-
* First social poll version
|
1 |
=== Poll, Survey, Form & Quiz Maker by OpinionStage ===
|
2 |
Contributors: OpinionStage.com
|
3 |
Donate link: https://www.opinionstage.com
|
4 |
+
Tags: poll, quiz, survey, form
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 5.2.1
|
7 |
+
Stable tag: 19.6.21
|
8 |
+
Requires PHP: 5.2
|
9 |
|
10 |
+
Add a Poll, Survey or Quiz to your site. Create quizzes, surveys and polls from scratch or based on templates. Get started in seconds.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
Opinion Stage offers a top performing and award winning Poll, Survey, Quiz and form Wordpress Plugin.
|
15 |
|
16 |
+
<a href="https://www.opinionstage.com/templates?o=wp35e8" target="_blank">Check out our Quiz, Poll, Survey and Form Examples</a>
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
= Why use Opinion Stage? =
|
19 |
|
20 |
+
* Boost engagement & traffic - add a poll, survey or quiz to your posts/pages to increases participation, time-on-site & page views. Increase social sharing and viral distribution.
|
21 |
+
* Gather more qualified leads - integrate a lead form inside the poll, quiz or survey. This will not only produce more leads than static forms, but will also produce qualified leads, as the leads will be associated with the answers of the users.
|
22 |
+
* Generate revenue - take advantage of the high engagement rates to increase revenue from ads inside and outside of the polls and quizzes.
|
23 |
+
* Extract insights - get more insights using interactive polls & surveys designed to maximize participation. Extract actionable insights with an intuitive analytics dashboard.
|
24 |
+
|
25 |
+
= Main Poll, Survey, Form & Quiz WordPress Plugin Features: =
|
26 |
+
|
27 |
+
* Easy and fast to create polls, surveys and quizzes either from scratch or using one of the hundreds of free templates.
|
28 |
+
* Integrate images & videos into the polls, quizzes and surveys.
|
29 |
+
* Customize the look & feel by selecting the color theme, fonts and size. Use the CSS override feature to fully match design to your site and brand.
|
30 |
+
* White label the widgets and add your own logo.
|
31 |
+
* Display poll & survey results in real-time.
|
32 |
+
* Advanced analyics dashboard for quizzes and surveys with both results and performance tables and graphs.
|
33 |
+
* Export all the details to a csv/xls file.
|
34 |
+
* Integrates with social networks (e.g. facebook, twitter, etc) to promote sharing and viral distrubution of polls & quizzes.
|
35 |
+
* Notify with email on quiz & survey submissions.
|
36 |
+
* Add call to actions at the end of quizzes & surveys.
|
37 |
+
* Use Survey and quiz branch logic that lets you determine which question is asked next based on the answer to the previous question.
|
38 |
+
* Integrate with your marketing automation using native integrations (e.g. mailchip, hubspot, etc), zapier.com or webhooks.
|
39 |
+
* Embed in a single post/page or display in a sidebar or section placement.
|
40 |
+
* Popup the poll, survey or quiz automatically when users enters/exits the page.
|
41 |
+
* Responsive design that optimizes display of polls, quizzes and surveys in desktops, tablets and mobile devices.
|
42 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
= Language support =
|
44 |
|
45 |
Opinion Stage supports over 42 languages, missing a language? Let us know!
|
46 |
|
47 |
= About Opinion Stage: =
|
48 |
|
49 |
+
Opinion Stage is a powerful & easy-to-use interactive content (e.g. poll, quiz, survey, forms, etc) creation service. Opinion Stages' highly engaging content formats are used to boost engagement, gather leads, generate revenue and to extract actionable insights. Opinion Stage works with 100,000+ creators, including world-leading publishers, brands & agencies. For more details, visit <a href="https://www.opinionstage.com?o=wp35e8" target="_blank">the Opinion Stage site.</a>
|
50 |
|
51 |
== Installation ==
|
52 |
|
55 |
|
56 |
== Frequently Asked Questions ==
|
57 |
|
58 |
+
= Are Opinion Stage items responsive? =
|
59 |
|
60 |
+
Yes, all item formats (e.g. poll, quiz, survey, form, etc) created with Opinion Stage are fully responsive, and designed to optimaly display on mobile, tablet and desktop
|
61 |
|
62 |
+
= What interactive item formats does Opinion Stage support? =
|
63 |
|
64 |
+
With Opinion Stage you can create the following item formats: Poll, Poll Sets, Personality Quiz, Trivia Quiz, Survey, Slideshow, Form, Story Article, List. We are constantly adding additional interactive formats so stay tuned!
|
65 |
|
66 |
= What is the difference between a Poll and a Survey =
|
67 |
|
68 |
Polls include one question and are used for getting a quick answer on a question. Polls are often used for gathering opinions, getting feedback, running contents & competitions and generating engagement. Surveys include multiple questions of different types. Surveys are often used to gather feedback and insights. If you are still unsure whether to use a poll or a survey, contact our support team and we'll be happy to help.
|
69 |
|
70 |
+
= What customization options do you offer for the polls, surveys and quizzes? =
|
71 |
|
72 |
+
Opinion Stage offers many built-in customization options such as selecting the color theme, font and sizes. Use the CSS override feature to fully match the items to your brand. You can also white label the items and add your own logo.
|
73 |
|
74 |
|
75 |
== Other Notes ==
|
76 |
|
77 |
== Screenshots ==
|
78 |
|
79 |
+
1. **Poll image layout** - example of integrating images in the poll answers.
|
80 |
+
2. **Poll standard layout** - example of a poll standard layout
|
81 |
3. **poll head to head layout** - example of a head-to-head layout poll
|
82 |
+
4. **Trivia quiz** - example of trivia quiz results
|
83 |
+
5. **Personality quiz** - example of a personality quiz.
|
84 |
+
6. **Content creation dashboard** - example of the Opinion Stage interactive content (e.g. poll, quiz, survey) creation dashboard
|
85 |
7. **Lead form** - example of gathering quality leads while users participate in the polls, quizzes & surveys
|
86 |
8. **Report** - example of a poll report screen that includes advanced analysis of results
|
87 |
+
9. **Templates** - screenshot of the templates dashboard that includes hundreds of optimized templates you can freely use
|
88 |
+
10. **Popup placement** - display your poll, quiz or survey in an exit/enter, center/side screen popup
|
89 |
|
90 |
== Upgrade Notice ==
|
91 |
|
92 |
N/A
|
93 |
|
94 |
== Changelog ==
|
95 |
+
= 19.6.21 =
|
96 |
+
* Added support WordPress 5.2.x
|
97 |
+
* Removed support for PHP versions lower than 5.2
|
98 |
= 19.6.20 =
|
99 |
* bugfixes
|
100 |
= 19.6.19 =
|
627 |
= 1.0.1 =
|
628 |
* Improvements in the poll embed flow to ease insertion of polls
|
629 |
= 1.0.0 =
|
630 |
+
* First social poll version
|