Changeset 3023298
- Timestamp:
- 01/18/2024 06:05:11 AM (2 years ago)
- Location:
- releva-nz/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
includes/class-relevatracking.php (modified) (1 diff)
-
public/class-relevatracking-public.php (modified) (1 diff)
-
relevatracking.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
releva-nz/trunk/README.txt
r2988403 r3023298 3 3 Tags: e-commerce, sales, advertising, marketing, retargeting, remarketing 4 4 Requires at least: 3.0.1 5 Tested up to: 6.4. 05 Tested up to: 6.4.2 6 6 Requires PHP: 5.2 7 7 Stable tag: trunk … … 73 73 = 2.1.4 = 74 74 * improved tracking for custom success pages 75 76 = 2.1.6 = 77 * improved availability tracking for products -
releva-nz/trunk/includes/class-relevatracking.php
r2988403 r3023298 70 70 71 71 $this->plugin_name = 'relevatracking'; 72 $this->version = '2.1. 5';72 $this->version = '2.1.6'; 73 73 74 74 $this->load_dependencies(); -
releva-nz/trunk/public/class-relevatracking-public.php
r2988403 r3023298 244 244 $single_product = array(); 245 245 $product = wc_get_product($product_id); 246 246 247 247 if (empty($product)) { 248 continue; 249 } 250 251 // skip products not available 252 $available = $product->get_availability(); 253 if(is_array($available) && in_array('out-of-stock', $available)) { 248 254 continue; 249 255 } -
releva-nz/trunk/relevatracking.php
r2988403 r3023298 17 17 * Plugin URI: https://releva.nz 18 18 * Description: Technology for personalized advertising 19 * Version: 2.1. 519 * Version: 2.1.6 20 20 * Author: releva.nz 21 21 * License: GPL-2.0+
Note: See TracChangeset
for help on using the changeset viewer.