Version Description
- Fixed bug with alignment in mobile devices
- Fixed bug in new aligning method for shortcodes
Download this release
Release Info
Developer | timersys |
Plugin | Popups – WordPress Popup |
Version | 1.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.7
- README.txt +7 -2
- popups.php +1 -1
- public/assets/css/public.css +9 -1
- public/class-social-popup.php +1 -1
- public/views/popup.php +1 -1
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: timersys
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=K4T6L69EV9G2Q
|
4 |
Tags: twitter,google+, facebook,Popups, twitter follow, facebook like, google plus,social boost, social splash, popup, facebook popup, scroll popups, popups, wordpress popup, wp popups
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 3.9.
|
7 |
-
Stable tag: 1.0.
|
8 |
Text Domain: spucpt
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -84,6 +84,11 @@ Yes if you need to debug you can use uncompressed javascript by addings ([this c
|
|
84 |
|
85 |
== Changelog ==
|
86 |
|
|
|
|
|
|
|
|
|
|
|
87 |
= 1.0.6 =
|
88 |
|
89 |
* Fixed locale problem with facebook js
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=K4T6L69EV9G2Q
|
4 |
Tags: twitter,google+, facebook,Popups, twitter follow, facebook like, google plus,social boost, social splash, popup, facebook popup, scroll popups, popups, wordpress popup, wp popups
|
5 |
Requires at least: 3.6
|
6 |
+
Tested up to: 3.9.2
|
7 |
+
Stable tag: 1.0.7
|
8 |
Text Domain: spucpt
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
84 |
|
85 |
== Changelog ==
|
86 |
|
87 |
+
= 1.0.7 =
|
88 |
+
|
89 |
+
* Fixed bug with alignment in mobile devices
|
90 |
+
* Fixed bug in new aligning method for shortcodes
|
91 |
+
|
92 |
= 1.0.6 =
|
93 |
|
94 |
* Fixed locale problem with facebook js
|
popups.php
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
* @socialpopup
|
12 |
* Plugin Name: Popups
|
13 |
* Plugin URI: http://www.timersys.com/free-plugins/social-popup/
|
14 |
-
* Version: 1.0.
|
15 |
* Description: This plugin will display a popup or splash screen when a new user visit your site showing a Google+, twitter and facebook follow links. This will increase you followers ratio in a 40%. Popup will be close depending on your settings. Check readme.txt for full details.
|
16 |
* Author: Damian Logghe
|
17 |
* Author URI: http://wp.timersys.com
|
11 |
* @socialpopup
|
12 |
* Plugin Name: Popups
|
13 |
* Plugin URI: http://www.timersys.com/free-plugins/social-popup/
|
14 |
+
* Version: 1.0.7
|
15 |
* Description: This plugin will display a popup or splash screen when a new user visit your site showing a Google+, twitter and facebook follow links. This will increase you followers ratio in a 40%. Popup will be close depending on your settings. Check readme.txt for full details.
|
16 |
* Author: Damian Logghe
|
17 |
* Author URI: http://wp.timersys.com
|
public/assets/css/public.css
CHANGED
@@ -26,6 +26,9 @@ body {
|
|
26 |
-webkit-border-radius: 8px;
|
27 |
border-radius: 8px;
|
28 |
}
|
|
|
|
|
|
|
29 |
/** Some basic css for box content**/
|
30 |
.spu-box h1{
|
31 |
margin: 1.414285714rem 0;
|
@@ -101,4 +104,9 @@ body {
|
|
101 |
}
|
102 |
.spu-shortcode iframe{
|
103 |
max-width: 1200px;
|
104 |
-
}
|
|
|
|
|
|
|
|
|
|
26 |
-webkit-border-radius: 8px;
|
27 |
border-radius: 8px;
|
28 |
}
|
29 |
+
.spu-box.spu-centered{
|
30 |
+
margin: 0;
|
31 |
+
}
|
32 |
/** Some basic css for box content**/
|
33 |
.spu-box h1{
|
34 |
margin: 1.414285714rem 0;
|
104 |
}
|
105 |
.spu-shortcode iframe{
|
106 |
max-width: 1200px;
|
107 |
+
}
|
108 |
+
@media only screen and (max-width: 620px) {
|
109 |
+
.spu-box {
|
110 |
+
left: 0 !important;
|
111 |
+
}
|
112 |
+
}
|
public/class-social-popup.php
CHANGED
@@ -23,7 +23,7 @@ class SocialPopup {
|
|
23 |
*
|
24 |
* @var string
|
25 |
*/
|
26 |
-
const VERSION = '1.0.
|
27 |
|
28 |
/**
|
29 |
* Popups to use acrros files
|
23 |
*
|
24 |
* @var string
|
25 |
*/
|
26 |
+
const VERSION = '1.0.7';
|
27 |
|
28 |
/**
|
29 |
* Popups to use acrros files
|
public/views/popup.php
CHANGED
@@ -43,7 +43,7 @@ do_action( 'spu/popup/before_popup', $box, $opts, $css);
|
|
43 |
data-box-id="<?php echo $box->ID ; ?>" data-trigger="<?php echo esc_attr( $opts['trigger'] ); ?>"
|
44 |
data-trigger-number="<?php echo esc_attr( absint( $opts['trigger_number'] ) ); ?>"
|
45 |
data-animation="<?php echo esc_attr($opts['animation']); ?>" data-cookie="<?php echo esc_attr( absint ( $opts['cookie'] ) ); ?>" data-test-mode="<?php echo esc_attr($opts['test_mode']); ?>"
|
46 |
-
data-auto-hide="<?php echo esc_attr($opts['auto_hide']); ?>" data-bgopa="<?php echo esc_attr($css['bgopacity']);?>" data-advanced-close="1"
|
47 |
style="left:-99999px" <?php echo apply_filters( 'spu/popup/data_attrs', $data_attrs );?>>
|
48 |
<div class="spu-content"><?php echo $content; ?></div>
|
49 |
<span class="spu-close">×</span>
|
43 |
data-box-id="<?php echo $box->ID ; ?>" data-trigger="<?php echo esc_attr( $opts['trigger'] ); ?>"
|
44 |
data-trigger-number="<?php echo esc_attr( absint( $opts['trigger_number'] ) ); ?>"
|
45 |
data-animation="<?php echo esc_attr($opts['animation']); ?>" data-cookie="<?php echo esc_attr( absint ( $opts['cookie'] ) ); ?>" data-test-mode="<?php echo esc_attr($opts['test_mode']); ?>"
|
46 |
+
data-auto-hide="<?php echo esc_attr($opts['auto_hide']); ?>" data-bgopa="<?php echo esc_attr($css['bgopacity']);?>" data-advanced-close="1" data-total="<?php echo $total_shortcodes[$box->ID];?>"
|
47 |
style="left:-99999px" <?php echo apply_filters( 'spu/popup/data_attrs', $data_attrs );?>>
|
48 |
<div class="spu-content"><?php echo $content; ?></div>
|
49 |
<span class="spu-close">×</span>
|