Version Description
- Tweak: Change description in readme.txt
- Fix: Show only active and not empty widgets in widget admin section of wordpress
Download this release
Release Info
Developer | ReneHermi |
Plugin | AdSense Plugin WP QUADS |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- includes/widgets.php +1 -1
- quick-adsense-reloaded.php +2 -2
- readme.txt +8 -3
includes/widgets.php
CHANGED
@@ -24,7 +24,7 @@ function quads_register_widgets() {
|
|
24 |
|
25 |
$amountWidgets = 10;
|
26 |
for ( $i = 1; $i <= $amountWidgets; $i++ ) {
|
27 |
-
if( !empty( $quads_options['ad' . $i . '_widget'] ) ) {
|
28 |
register_widget( 'quads_widgets_' . $i );
|
29 |
}
|
30 |
}
|
24 |
|
25 |
$amountWidgets = 10;
|
26 |
for ( $i = 1; $i <= $amountWidgets; $i++ ) {
|
27 |
+
if( !empty( $quads_options['ad' . $i . '_widget']['code'] ) ) {
|
28 |
register_widget( 'quads_widgets_' . $i );
|
29 |
}
|
30 |
}
|
quick-adsense-reloaded.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Description: Insert Google AdSense or any Ads code into your website. A fork of Quick AdSense
|
7 |
* Author: Rene Hermenau, WP-Staging
|
8 |
* Author URI: https://wordpress.org/plugins/quick-adsense-reloaded/
|
9 |
-
* Version: 1.5.
|
10 |
* Text Domain: quick-adsense-reloaded
|
11 |
* Domain Path: languages
|
12 |
* Credits: WP QUADS - Quick AdSense Reloaded is a fork of Quick AdSense
|
@@ -35,7 +35,7 @@ if( !defined( 'ABSPATH' ) )
|
|
35 |
|
36 |
// Plugin version
|
37 |
if( !defined( 'QUADS_VERSION' ) ) {
|
38 |
-
define( 'QUADS_VERSION', '1.5.
|
39 |
}
|
40 |
|
41 |
// Plugin name
|
6 |
* Description: Insert Google AdSense or any Ads code into your website. A fork of Quick AdSense
|
7 |
* Author: Rene Hermenau, WP-Staging
|
8 |
* Author URI: https://wordpress.org/plugins/quick-adsense-reloaded/
|
9 |
+
* Version: 1.5.1
|
10 |
* Text Domain: quick-adsense-reloaded
|
11 |
* Domain Path: languages
|
12 |
* Credits: WP QUADS - Quick AdSense Reloaded is a fork of Quick AdSense
|
35 |
|
36 |
// Plugin version
|
37 |
if( !defined( 'QUADS_VERSION' ) ) {
|
38 |
+
define( 'QUADS_VERSION', '1.5.1' );
|
39 |
}
|
40 |
|
41 |
// Plugin name
|
readme.txt
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
=== AdSense Plugin WP QUADS ===
|
2 |
|
3 |
Author URL: https://profiles.wordpress.org/renehermi/
|
4 |
-
Plugin URL: https://
|
5 |
Contributors: ReneHermi, WP-Staging
|
6 |
-
Donate link:
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Tags: adsense, ads, ad, google adsense, advertising, amp, ad injection, ad inserter, ad manager
|
10 |
Requires at least: 3.6+
|
11 |
Tested up to: 4.7.3
|
12 |
-
Stable tag: 1.5.
|
13 |
|
14 |
Quick Adsense Reloaded! Quickest way to insert Google AdSense & other ads into your website. Google AdSense integration with Google AMP support
|
15 |
|
@@ -129,6 +129,11 @@ Alternative Installation:
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
|
|
|
|
|
|
|
|
|
|
132 |
= 1.5.0 =
|
133 |
* Fix: PHP7 compatibility fixes
|
134 |
* Fix: Check if element wpquads-adblock-notice exists before accessing it
|
1 |
=== AdSense Plugin WP QUADS ===
|
2 |
|
3 |
Author URL: https://profiles.wordpress.org/renehermi/
|
4 |
+
Plugin URL: https://wpquads.com
|
5 |
Contributors: ReneHermi, WP-Staging
|
6 |
+
Donate link: https://wpquads.com
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
Tags: adsense, ads, ad, google adsense, advertising, amp, ad injection, ad inserter, ad manager
|
10 |
Requires at least: 3.6+
|
11 |
Tested up to: 4.7.3
|
12 |
+
Stable tag: 1.5.1
|
13 |
|
14 |
Quick Adsense Reloaded! Quickest way to insert Google AdSense & other ads into your website. Google AdSense integration with Google AMP support
|
15 |
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= 1.5.1 =
|
133 |
+
|
134 |
+
* Tweak: Change description in readme.txt
|
135 |
+
* Fix: Show only active and not empty widgets in widget admin section of wordpress
|
136 |
+
|
137 |
= 1.5.0 =
|
138 |
* Fix: PHP7 compatibility fixes
|
139 |
* Fix: Check if element wpquads-adblock-notice exists before accessing it
|