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

Version Description

  • fix sidebar on/off checkbox
Download this release

Release Info

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

Code changes from version 19.6.29 to 19.6.30

admin/css/sidebar-widget.css CHANGED
@@ -11,7 +11,7 @@
11
  font-weight: 600;
12
  padding: 10px;
13
  float: left;
14
- margin-bottom: 20px;
15
  margin-right: 5px;
16
  line-height: normal;
17
  }
@@ -50,6 +50,7 @@
50
  }
51
  .opinionstage-sidebar-widget .opinionstage-sidebar-enabled {
52
  float: left;
 
53
  }
54
  /*.opinionstage-sidebar-widget .opinionstage-sidebar-config {
55
  float: right;
@@ -75,7 +76,18 @@
75
  overflow: hidden;
76
  }
77
  .wp-admin .opinionstage-sidebar-widget input[type=checkbox] {
78
- margin: 10px 5px 10px 0;
 
 
 
 
 
 
 
 
 
 
 
79
  }
80
  .opinionstage-sidebar-widget .os-icon-plugin {
81
  float: left;
@@ -139,4 +151,11 @@
139
  }
140
  .opinionstage-sidebar-widget img {
141
  width: 86px;
 
 
 
 
 
 
 
142
  }
11
  font-weight: 600;
12
  padding: 10px;
13
  float: left;
14
+ margin-bottom: 5px;
15
  margin-right: 5px;
16
  line-height: normal;
17
  }
50
  }
51
  .opinionstage-sidebar-widget .opinionstage-sidebar-enabled {
52
  float: left;
53
+ margin-top: 10px;
54
  }
55
  /*.opinionstage-sidebar-widget .opinionstage-sidebar-config {
56
  float: right;
76
  overflow: hidden;
77
  }
78
  .wp-admin .opinionstage-sidebar-widget input[type=checkbox] {
79
+ margin: 0 5px 0 0;
80
+ }
81
+
82
+ .wp-admin .opinionstage-sidebar-widget input[type=checkbox], input[type=radio] {
83
+ border: 1px solid #0085ba;
84
+ height: 20px;
85
+ width: 20px;
86
+ box-shadow: none;
87
+ border-radius: 2px;
88
+ }
89
+ .wp-admin .opinionstage-sidebar-widget input[type=checkbox]:checked:before {
90
+ margin: -1px 0 0 -2px !important;
91
  }
92
  .opinionstage-sidebar-widget .os-icon-plugin {
93
  float: left;
151
  }
152
  .opinionstage-sidebar-widget img {
153
  width: 86px;
154
+ }
155
+ h3.sidebar-widget-heading-label {
156
+ color: #86939f;
157
+ font-size: 14px;
158
+ font-weight: normal;
159
+ margin-bottom: 0;
160
+ margin-top: 10px;
161
  }
includes/opinionstage-sidebar-widget.php CHANGED
@@ -108,17 +108,18 @@ require_once( plugin_dir_path( __FILE__ ).'opinionstage-client-session.php' );
108
  <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', OPINIONSTAGE_TEXT_DOMAIN); ?></label>
109
  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" placeholder="Enter the title here" value="<?php echo $title; ?>" >
110
  </p>
111
- <div class="opinionstage-sidebar-actions">
112
- <!-- <div class="opinionstage-sidebar-enabled">
113
- <input type="checkbox" id="<?php echo $this->get_field_id('enabled'); ?>" name="<?php echo $this->get_field_name('enabled'); ?>" value="1" <?php echo($enabled == '1' ? "checked" : "") ?> />
114
- <label for="<?php echo $this->get_field_id('enabled'); ?>">Enabled</label>
115
- </div> -->
116
  <div class="opinionstage-sidebar-config">
117
  <a href="<?php echo opinionstage_sidebar_placement_edit_url('content'); ?>" target="_blank" class='opinionstage-blue-bordered-btn opinionstage-edit-content'>SELECT ITEM</a>
118
  <a href="<?php echo opinionstage_sidebar_placement_edit_url('settings'); ?>" class='opinionstage-blue-bordered-btn opinionstage-edit-settings <?php echo( $os_client_logged_in ? '' : 'disabled' ) ?>' target="_blank">
119
  <div class="os-icon icon-os-common-settings"></div>
120
  </a>
121
  </div>
 
 
 
 
 
122
  </div>
123
  <?php } else { ?>
124
  <img src="<?php echo plugins_url( 'admin/images/os-logo.png', dirname(__FILE__) ); ?>" >
108
  <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title', OPINIONSTAGE_TEXT_DOMAIN); ?></label>
109
  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" placeholder="Enter the title here" value="<?php echo $title; ?>" >
110
  </p>
111
+ <div class="opinionstage-sidebar-actions">
 
 
 
 
112
  <div class="opinionstage-sidebar-config">
113
  <a href="<?php echo opinionstage_sidebar_placement_edit_url('content'); ?>" target="_blank" class='opinionstage-blue-bordered-btn opinionstage-edit-content'>SELECT ITEM</a>
114
  <a href="<?php echo opinionstage_sidebar_placement_edit_url('settings'); ?>" class='opinionstage-blue-bordered-btn opinionstage-edit-settings <?php echo( $os_client_logged_in ? '' : 'disabled' ) ?>' target="_blank">
115
  <div class="os-icon icon-os-common-settings"></div>
116
  </a>
117
  </div>
118
+ <div style="clear: both;"></div>
119
+ <div class="opinionstage-sidebar-enabled">
120
+ <input type="checkbox" id="<?php echo $this->get_field_id('enabled'); ?>" name="<?php echo $this->get_field_name('enabled'); ?>" value="1" <?php echo($enabled == '1' ? "checked" : "") ?> />
121
+ <label for="<?php echo $this->get_field_id('enabled'); ?>">Enable sidebar widget</label>
122
+ </div>
123
  </div>
124
  <?php } else { ?>
125
  <img src="<?php echo plugins_url( 'admin/images/os-logo.png', dirname(__FILE__) ); ?>" >
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.29
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.30
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.29
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.29');
28
 
29
  define('OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage');
30
 
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.30
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.30');
28
 
29
  define('OPINIONSTAGE_TEXT_DOMAIN', 'social-polls-by-opinionstage');
30
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.opinionstage.com
4
  Tags: poll, quiz, survey, form
5
  Requires at least: 2.8
6
  Tested up to: 5.2.2
7
- Stable tag: 19.6.29
8
  Requires PHP: 5.2
9
 
10
  Add Polls, Surveys or Quizzes to your Wordpress site. Create from scratch or based on templates. Get started in seconds.
@@ -116,6 +116,8 @@ Opinion Stage makes it easy for you to comply with the GDPR regulation. For more
116
  N/A
117
 
118
  == Changelog ==
 
 
119
  = 19.6.29 =
120
  * fix placements links
121
  = 19.6.28 =
4
  Tags: poll, quiz, survey, form
5
  Requires at least: 2.8
6
  Tested up to: 5.2.2
7
+ Stable tag: 19.6.30
8
  Requires PHP: 5.2
9
 
10
  Add Polls, Surveys or Quizzes to your Wordpress site. Create from scratch or based on templates. Get started in seconds.
116
  N/A
117
 
118
  == Changelog ==
119
+ = 19.6.30 =
120
+ * fix sidebar on/off checkbox
121
  = 19.6.29 =
122
  * fix placements links
123
  = 19.6.28 =