Version Description
- Fix: Fatal error for wordpress version below 5.0
Download this release
Release Info
Developer | wpquads |
Plugin | AdSense Plugin WP QUADS |
Version | 1.8.12 |
Comparing to | |
See all releases |
Code changes from version 1.8.11 to 1.8.12
- Gruntfile.js +1 -1
- quick-adsense-reloaded.php +5 -3
- readme.txt +4 -1
Gruntfile.js
CHANGED
@@ -62,7 +62,7 @@ module.exports = function (grunt) {
|
|
62 |
},
|
63 |
options: {
|
64 |
replacements: [{
|
65 |
-
pattern: /1.8.
|
66 |
replacement: '<%= pkg.version %>'
|
67 |
}]
|
68 |
}
|
62 |
},
|
63 |
options: {
|
64 |
replacements: [{
|
65 |
+
pattern: /1.8.12/g,
|
66 |
replacement: '<%= pkg.version %>'
|
67 |
}]
|
68 |
}
|
quick-adsense-reloaded.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Description: Insert Google AdSense and other ad formats fully automatic into your website
|
7 |
* Author: WP Quads
|
8 |
* Author URI: https://wordpress.org/plugins/quick-adsense-reloaded/
|
9 |
-
* Version: 1.8.
|
10 |
* Text Domain: quick-adsense-reloaded
|
11 |
* Domain Path: languages
|
12 |
* Credits: WP QUADS - Quick AdSense Reloaded is a fork of Quick AdSense
|
@@ -38,7 +38,7 @@ if( !defined( 'ABSPATH' ) )
|
|
38 |
|
39 |
// Plugin version
|
40 |
if( !defined( 'QUADS_VERSION' ) ) {
|
41 |
-
define( 'QUADS_VERSION', '1.8.
|
42 |
}
|
43 |
|
44 |
// Plugin name
|
@@ -222,7 +222,9 @@ if( !class_exists( 'QuickAdsenseReloaded' ) ) :
|
|
222 |
require_once QUADS_PLUGIN_DIR . 'includes/class-template.php';
|
223 |
require_once QUADS_PLUGIN_DIR . 'includes/admin/adsTxt.php';
|
224 |
require_once QUADS_PLUGIN_DIR . 'includes/elementor/widget.php';
|
225 |
-
|
|
|
|
|
226 |
|
227 |
|
228 |
|
6 |
* Description: Insert Google AdSense and other ad formats fully automatic into your website
|
7 |
* Author: WP Quads
|
8 |
* Author URI: https://wordpress.org/plugins/quick-adsense-reloaded/
|
9 |
+
* Version: 1.8.12
|
10 |
* Text Domain: quick-adsense-reloaded
|
11 |
* Domain Path: languages
|
12 |
* Credits: WP QUADS - Quick AdSense Reloaded is a fork of Quick AdSense
|
38 |
|
39 |
// Plugin version
|
40 |
if( !defined( 'QUADS_VERSION' ) ) {
|
41 |
+
define( 'QUADS_VERSION', '1.8.12' );
|
42 |
}
|
43 |
|
44 |
// Plugin name
|
222 |
require_once QUADS_PLUGIN_DIR . 'includes/class-template.php';
|
223 |
require_once QUADS_PLUGIN_DIR . 'includes/admin/adsTxt.php';
|
224 |
require_once QUADS_PLUGIN_DIR . 'includes/elementor/widget.php';
|
225 |
+
if ( function_exists('has_blocks')) {
|
226 |
+
require_once QUADS_PLUGIN_DIR . 'includes/gutenberg/src/init.php';
|
227 |
+
}
|
228 |
|
229 |
|
230 |
|
readme.txt
CHANGED
@@ -10,7 +10,7 @@ Tags: adsense, ads, ad, google adsense, advertising, amp, ad injection, ad inser
|
|
10 |
Requires at least: 3.6+
|
11 |
Tested up to: 5.3.2
|
12 |
Requires PHP: 5.3
|
13 |
-
Stable tag: 1.8.
|
14 |
|
15 |
Ads & AdSense Plugin is the quickest way to insert Google AdSense & other ads into your website. Google AdSense integration with Google AMP support.
|
16 |
|
@@ -129,6 +129,9 @@ Alternative Installation:
|
|
129 |
|
130 |
|
131 |
== Changelog ==
|
|
|
|
|
|
|
132 |
= 1.8.11 =
|
133 |
* Feature: Elementor module for ads #60
|
134 |
|
10 |
Requires at least: 3.6+
|
11 |
Tested up to: 5.3.2
|
12 |
Requires PHP: 5.3
|
13 |
+
Stable tag: 1.8.12
|
14 |
|
15 |
Ads & AdSense Plugin is the quickest way to insert Google AdSense & other ads into your website. Google AdSense integration with Google AMP support.
|
16 |
|
129 |
|
130 |
|
131 |
== Changelog ==
|
132 |
+
= 1.8.12 =
|
133 |
+
* Fix: Fatal error for wordpress version below 5.0
|
134 |
+
|
135 |
= 1.8.11 =
|
136 |
* Feature: Elementor module for ads #60
|
137 |
|