Version Description
- hotfix: fix the use of shortcodes within ads
Download this release
Release Info
Developer | webzunft |
Plugin | Advanced Ads |
Version | 1.3.5 |
Comparing to | |
See all releases |
Code changes from version 1.3.4 to 1.3.5
- advanced-ads.php +1 -1
- classes/ad_type_content.php +1 -0
- readme.txt +5 -1
advanced-ads.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: http://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
-
* Version: 1.3.
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
12 |
* Plugin Name: Advanced Ads
|
13 |
* Plugin URI: http://wpadvancedads.com
|
14 |
* Description: Manage and optimize your ads in WordPress
|
15 |
+
* Version: 1.3.5
|
16 |
* Author: Thomas Maier
|
17 |
* Author URI: http://webgilde.com
|
18 |
* Text Domain: advanced-ads
|
classes/ad_type_content.php
CHANGED
@@ -113,6 +113,7 @@ class Advads_Ad_Type_Content extends Advads_Ad_Type_Abstract{
|
|
113 |
$output = convert_chars($output);
|
114 |
$output = wpautop($output);
|
115 |
$output = shortcode_unautop($output);
|
|
|
116 |
$output = prepend_attachment($output);
|
117 |
|
118 |
return $output;
|
113 |
$output = convert_chars($output);
|
114 |
$output = wpautop($output);
|
115 |
$output = shortcode_unautop($output);
|
116 |
+
$output = do_shortcode($output);
|
117 |
$output = prepend_attachment($output);
|
118 |
|
119 |
return $output;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id
|
|
4 |
Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
|
5 |
Requires at least: WP 3.5, PHP 5.3
|
6 |
Tested up to: 4.0.1
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -146,6 +146,10 @@ There is no revenue share. Advanced Ads doesn’t alter your ad codes in a way t
|
|
146 |
|
147 |
== Changelog ==
|
148 |
|
|
|
|
|
|
|
|
|
149 |
= 1.3.4 =
|
150 |
|
151 |
* hotfix: display ads for placements when no ad group exists
|
4 |
Tags: ads, ad, adsense, display, banner, advertisements, adverts, advert, monetization
|
5 |
Requires at least: WP 3.5, PHP 5.3
|
6 |
Tested up to: 4.0.1
|
7 |
+
Stable tag: 1.3.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
146 |
|
147 |
== Changelog ==
|
148 |
|
149 |
+
= 1.3.5 =
|
150 |
+
|
151 |
+
* hotfix: fix the use of shortcodes within ads
|
152 |
+
|
153 |
= 1.3.4 =
|
154 |
|
155 |
* hotfix: display ads for placements when no ad group exists
|