Changeset 2832206
- Timestamp:
- 12/12/2022 09:11:19 AM (3 years ago)
- Location:
- wp-profitshare-advertisers
- Files:
-
- 33 added
- 6 edited
-
tags/1.3.7 (added)
-
tags/1.3.7/assets (added)
-
tags/1.3.7/assets/css (added)
-
tags/1.3.7/assets/css/admin_settings.css (added)
-
tags/1.3.7/assets/css/categories.css (added)
-
tags/1.3.7/assets/js (added)
-
tags/1.3.7/assets/js/admin_settings.js (added)
-
tags/1.3.7/assets/js/categories.js (added)
-
tags/1.3.7/changelog.txt (added)
-
tags/1.3.7/includes (added)
-
tags/1.3.7/includes/controllers (added)
-
tags/1.3.7/includes/controllers/class-PWA-category.php (added)
-
tags/1.3.7/includes/controllers/class-PWA-core.php (added)
-
tags/1.3.7/includes/controllers/class-PWA-feed.php (added)
-
tags/1.3.7/includes/controllers/class-PWA-plugin.php (added)
-
tags/1.3.7/includes/controllers/class-PWA-product.php (added)
-
tags/1.3.7/includes/controllers/class-PWA-settings.php (added)
-
tags/1.3.7/includes/libraries (added)
-
tags/1.3.7/includes/libraries/ExchangeRatesAPI.php (added)
-
tags/1.3.7/includes/models (added)
-
tags/1.3.7/includes/models/model-PWA-categories.php (added)
-
tags/1.3.7/includes/models/model-PWA-wordpress-categories.php (added)
-
tags/1.3.7/includes/models/model-PWA.php (added)
-
tags/1.3.7/includes/templates (added)
-
tags/1.3.7/includes/templates/pwa_categories_template.php (added)
-
tags/1.3.7/includes/validators (added)
-
tags/1.3.7/includes/validators/validator-PWA-wordpress-category.php (added)
-
tags/1.3.7/includes/validators/validator-PWA.php (added)
-
tags/1.3.7/readme.txt (added)
-
tags/1.3.7/screenshot-1.png (added)
-
tags/1.3.7/screenshot-2.png (added)
-
tags/1.3.7/screenshot-3.png (added)
-
tags/1.3.7/wp-profitshare-advertisers.php (added)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/controllers/class-PWA-category.php (modified) (1 diff)
-
trunk/includes/controllers/class-PWA-feed.php (modified) (1 diff)
-
trunk/includes/controllers/class-PWA-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-profitshare-advertisers.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-profitshare-advertisers/trunk/changelog.txt
r2738151 r2832206 41 41 1.3.6 42 42 Fix product prices when price is not float bug 43 44 1.3.7 45 Update to latest Wordpress version and PHP 8.1.x compatibility -
wp-profitshare-advertisers/trunk/includes/controllers/class-PWA-category.php
r2212951 r2832206 34 34 */ 35 35 public function getName() { 36 return $this->category->name; 36 if (gettype($this->category) == 'object'){ 37 return $this->category->name; 38 } 37 39 } 38 40 -
wp-profitshare-advertisers/trunk/includes/controllers/class-PWA-feed.php
r2212951 r2832206 19 19 'limit' => -1, 20 20 'visibility' => 'visible', 21 'status' => 'publish', 21 22 ); 22 23 -
wp-profitshare-advertisers/trunk/includes/controllers/class-PWA-plugin.php
r2357301 r2832206 424 424 $url = "https://{$this->getTrackingUrl()}/ca/0/{$this->settings->getTrackingCode()}/p/$encryptedParams"; 425 425 // send order to profitshare via server 426 $this->profitshare->callURL( "https:" .$url);426 $this->profitshare->callURL($url); 427 427 428 428 // send order to profitshare via img … … 552 552 $currencyExchangeValue = $this->settings->getExchangeValue(); 553 553 554 if ( file_exists($this->settings->getFeedFilePath()) && empty($_POST['advertiser_tracking_code'])) {554 if ($this->settings->getFeedFilePath() && file_exists($this->settings->getFeedFilePath()) && empty($_POST['advertiser_tracking_code'])) { 555 555 $isFeedFileGenerated = true; 556 556 } -
wp-profitshare-advertisers/trunk/readme.txt
r2738151 r2832206 3 3 Tags: profitshare, affiliates, advertiseri, advertisers, conversion, conversie, marketing afiliat 4 4 Requires at least: 3.0 5 Tested up to: 5.9.36 Stable tag: 1.3. 65 Tested up to: 6.1 6 Stable tag: 1.3.7 7 7 Contributors: Conversion.ro 8 8 License: GPLv2 … … 84 84 1.3.6 85 85 Fix product prices when price is not float bug 86 87 1.3.7 88 Update to latest Wordpress version and PHP 8.1.x compatibility -
wp-profitshare-advertisers/trunk/wp-profitshare-advertisers.php
r2738151 r2832206 16 16 */ 17 17 18 define('PWA_VERSION', '1.3. 6');18 define('PWA_VERSION', '1.3.7'); 19 19 20 20 function pwa_get_plugin() {
Note: See TracChangeset
for help on using the changeset viewer.