Changeset 3039170
- Timestamp:
- 02/21/2024 12:37:01 PM (2 years ago)
- Location:
- setupad/trunk
- Files:
-
- 4 edited
-
public/includes/helper-functions.php (modified) (1 diff)
-
public/includes/related-posts.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
setupad.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
setupad/trunk/public/includes/helper-functions.php
r3021934 r3039170 27 27 28 28 //Accepts object parameter 29 function setupad_get_ad_contents($ad_row , $related_posts_check = false) {30 if(!$ad_row->setupad_status && !$related_posts_check)29 function setupad_get_ad_contents($ad_row) { 30 if(!$ad_row->setupad_status) 31 31 return false; 32 32 -
setupad/trunk/public/includes/related-posts.php
r3021934 r3039170 76 76 } 77 77 @media only screen and (max-width: 767px) { 78 .relatedthumb {79 height: 170px !important;80 }81 78 .relatedthumb a { 82 79 width: 100%; … … 106 103 } 107 104 105 $after .= '</div>'; 108 106 $content .= $after; 109 107 … … 179 177 if($ad_row !== null){ 180 178 if(!setupad_url_inclusions($ad_row->setupad_url_inclusions) && !(setupad_url_exclusions($ad_row->setupad_url_exclusions) && !$ad_row->setupad_url_inclusions)){ 181 $related_category_content .= setupad_get_ad_contents($ad_row , true);179 $related_category_content .= setupad_get_ad_contents($ad_row); 182 180 } 183 181 } -
setupad/trunk/readme.txt
r3027362 r3039170 5 5 Requires at least: 4.4 6 6 Tested up to: 6.4 7 Stable tag: 1.5. 27 Stable tag: 1.5.3 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 81 81 == Changelog == 82 82 83 = 1.5.3 = 84 - UI improvements 85 - Bug fixes 86 83 87 = 1.5.2 = 84 88 - Bug fixes -
setupad/trunk/setupad.php
r3027362 r3039170 2 2 /** 3 3 * @package Setupad WP Ads 4 * @version 1.5. 24 * @version 1.5.3 5 5 */ 6 6 /* … … 8 8 Description: Simple and powerful ad insertion and management tool for WordPress users with built-in integration with Setupad header bidding monetization platform. 9 9 Author: Setupad 10 Version: 1.5. 210 Version: 1.5.3 11 11 Author URI: https://setupad.com/ 12 12 */
Note: See TracChangeset
for help on using the changeset viewer.