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

Version Description

  • fix templates links
Download this release

Release Info

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

Code changes from version 19.7.0 to 19.7.1

includes/opinionstage-utility-functions.php CHANGED
@@ -99,35 +99,23 @@ function opinionstage_sidebar_placement_edit_url( $tab ) {
99
  }
100
 
101
  function opinionstage_template_poll_link( $css_class, $title = 'USE A TEMPLATE' ) {
102
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=poll', $css_class ); // %5B%5D --> []
103
  }
104
 
105
  function opinionstage_template_survey_link( $css_class, $title = 'USE A TEMPLATE' ) {
106
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=survey', $css_class ); // %5B%5D --> []
107
  }
108
 
109
  function opinionstage_template_trivia_link( $css_class, $title = 'USE A TEMPLATE' ) {
110
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=trivia_quiz', $css_class ); // %5B%5D --> []
111
  }
112
 
113
  function opinionstage_template_personality_quiz_link( $css_class, $title = 'USE A TEMPLATE' ) {
114
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=personality_quiz', $css_class ); // %5B%5D --> []
115
- }
116
-
117
- function opinionstage_template_slideshow_link( $css_class, $title = 'USE A TEMPLATE' ) {
118
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=slideshow', $css_class ); // %5B%5D --> []
119
  }
120
 
121
  function opinionstage_template_form_link( $css_class, $title = 'USE A TEMPLATE' ) {
122
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=form', $css_class ); // %5B%5D --> []
123
- }
124
-
125
- function opinionstage_template_list_link( $css_class, $title = 'USE A TEMPLATE' ) {
126
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=list', $css_class ); // %5B%5D --> []
127
- }
128
-
129
- function opinionstage_template_story_link( $css_class, $title = 'USE A TEMPLATE' ) {
130
- return opinionstage_link( $title, 'dashboard/content/templates?types%5B%5D=story', $css_class ); // %5B%5D --> []
131
  }
132
 
133
  function opinionstage_create_widget_link( $w_type, $css_class, $title = 'CREATE NEW' ) {
99
  }
100
 
101
  function opinionstage_template_poll_link( $css_class, $title = 'USE A TEMPLATE' ) {
102
+ return opinionstage_link( $title, 'dashboard/content/templates', $css_class, array('types[]' => 1) );
103
  }
104
 
105
  function opinionstage_template_survey_link( $css_class, $title = 'USE A TEMPLATE' ) {
106
+ return opinionstage_link( $title, 'dashboard/content/templates', $css_class, array('types[]' => 7) );
107
  }
108
 
109
  function opinionstage_template_trivia_link( $css_class, $title = 'USE A TEMPLATE' ) {
110
+ return opinionstage_link( $title, 'dashboard/content/templates', $css_class, array('types[]' => 4) );
111
  }
112
 
113
  function opinionstage_template_personality_quiz_link( $css_class, $title = 'USE A TEMPLATE' ) {
114
+ return opinionstage_link( $title, 'dashboard/content/templates', $css_class, array('types[]' => 5) );
 
 
 
 
115
  }
116
 
117
  function opinionstage_template_form_link( $css_class, $title = 'USE A TEMPLATE' ) {
118
+ return opinionstage_link( $title, 'dashboard/content/templates', $css_class, array('types[]' => 8) );
 
 
 
 
 
 
 
 
119
  }
120
 
121
  function opinionstage_create_widget_link( $w_type, $css_class, $title = 'CREATE NEW' ) {
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.7.0
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.7.1
7
  Author: OpinionStage.com
8
  Author URI: https://www.opinionstage.com
9
  Text Domain: social-polls-by-opinionstage
plugin.php CHANGED
@@ -8,7 +8,7 @@
8
  * Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage
9
  * Plugin URI: https://www.opinionstage.com
10
  * 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.
11
- * Version: 19.7.0
12
  * Author: OpinionStage.com
13
  * Author URI: https://www.opinionstage.com
14
  * Text Domain: social-polls-by-opinionstage
@@ -34,7 +34,7 @@ if ( defined( 'WP_DEBUG' ) && true === WP_DEBUG ) {
34
  }
35
  }
36
 
37
- define( 'OPINIONSTAGE_WIDGET_VERSION', '19.7.0' );
38
 
39
  define( 'OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage' );
40
 
8
  * Plugin Name: Poll, Survey, Form & Quiz Maker by OpinionStage
9
  * Plugin URI: https://www.opinionstage.com
10
  * 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.
11
+ * Version: 19.7.1
12
  * Author: OpinionStage.com
13
  * Author URI: https://www.opinionstage.com
14
  * Text Domain: social-polls-by-opinionstage
34
  }
35
  }
36
 
37
+ define( 'OPINIONSTAGE_WIDGET_VERSION', '19.7.1' );
38
 
39
  define( 'OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage' );
40
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.opinionstage.com
4
  Tags: poll, quiz, survey, poll plugin, quiz plugin, survey plugin
5
  Requires at least: 2.8
6
  Tested up to: 5.5
7
- Stable tag: 19.7.0
8
  Requires PHP: 5.2
9
 
10
  Add a Poll, Survey, or Quiz to your Wordpress site. Create a poll, quiz, or survey from scratch or based on templates.
@@ -138,6 +138,8 @@ Opinion Stage makes it easy for you to comply with the GDPR regulation. For more
138
  N/A
139
 
140
  == Changelog ==
 
 
141
  = 19.7.0 =
142
  * deprecate set, slideshow & list
143
  * content popup UI/UX fixes
4
  Tags: poll, quiz, survey, poll plugin, quiz plugin, survey plugin
5
  Requires at least: 2.8
6
  Tested up to: 5.5
7
+ Stable tag: 19.7.1
8
  Requires PHP: 5.2
9
 
10
  Add a Poll, Survey, or Quiz to your Wordpress site. Create a poll, quiz, or survey from scratch or based on templates.
138
  N/A
139
 
140
  == Changelog ==
141
+ = 19.7.1 =
142
+ * fix templates links
143
  = 19.7.0 =
144
  * deprecate set, slideshow & list
145
  * content popup UI/UX fixes