Changeset 2957720
- Timestamp:
- 08/24/2023 08:27:49 AM (2 years ago)
- Location:
- mergado-marketing-pack/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (2 diffs)
-
admin/templates/partials/components/wizard/step4a.php (modified) (1 diff)
-
mergado-marketing-pack.php (modified) (2 diffs)
-
src/Feed/Category/CategoryFeed.php (modified) (1 diff)
-
src/Feed/Customer/CustomerFeed.php (modified) (1 diff)
-
src/Feed/Stock/StockFeed.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mergado-marketing-pack/trunk/README.txt
r2956525 r2957720 1 1 === Mergado Pack === 2 Stable tag: 3.6. 22 Stable tag: 3.6.3 3 3 Contributors: mergado 4 4 Donate link: https://pack.mergado.com/woocommerce … … 264 264 265 265 == Changelog == 266 267 = 3.6.3 = 268 * FIX: Heureka availability feed - partial generation filename bug 269 * FIX: Heureka availability feed - bad button in feed area 270 266 271 = 3.6.2 = 267 272 * FIX: Sklik - type error on PHP 8 -
mergado-marketing-pack/trunk/admin/templates/partials/components/wizard/step4a.php
r2909979 r2957720 43 43 <div> 44 44 <input type="checkbox" id="<?= $wizardData['wpCronActive'] ?>" name="<?= $wizardData['wpCronActive'] ?>" 45 <?php if (get_option($wizardData['wpCronActive'], 0) == 1){ ?>checked="checked"<?php } ?>45 <?php if (get_option($wizardData['wpCronActive'], 1) == 1){ ?>checked="checked"<?php } ?> 46 46 > 47 47 </div> -
mergado-marketing-pack/trunk/mergado-marketing-pack.php
r2956525 r2957720 17 17 * Plugin URI: https://www.mergado.cz 18 18 * Description: Earn more on price comparator sites. <strong>REQUIRES: Woocommerce</strong> 19 * Version: 3.6. 219 * Version: 3.6.3 20 20 * Author: Mergado technologies, s. r. o. 21 21 * Author URI: https://www.mergado.cz … … 44 44 } 45 45 46 define('PLUGIN_VERSION', '3.6. 2');46 define('PLUGIN_VERSION', '3.6.3'); 47 47 define('WOOCOMMERCE_DEPENCENCY_MESSAGE', __('Mergado Pack plugin requires <a href="/wp-admin/plugin-install.php?tab=plugin-information&plugin=woocommerce" target="_top">WooCommerce</a> plugin to be active!', 'mergado-marketing-pack')); 48 48 define( '__MERGADO_DIR__', plugin_dir_path( __FILE__ ) ); -
mergado-marketing-pack/trunk/src/Feed/Category/CategoryFeed.php
r2909979 r2957720 82 82 // Normal generating 83 83 } else if ($this->isNormal($categoriesPerStep, $categoryList)) { 84 $file = $this->xmlOutputDir . 'category_' . $this->token . '.xml';84 $file = $this->xmlOutputDir . $this->getFeedFileName(); 85 85 86 86 $this->logger->info('Category feed generator started'); -
mergado-marketing-pack/trunk/src/Feed/Customer/CustomerFeed.php
r2909979 r2957720 84 84 // Normal generating 85 85 } else if ($this->isNormal($customersPerStep, $customerList)) { 86 $file = $this->xmlOutputDir . $this-> name . '_' . $this->token . '.xml';86 $file = $this->xmlOutputDir . $this->getFeedFileName(); 87 87 88 88 $this->logger->info('Customer feed generator started'); -
mergado-marketing-pack/trunk/src/Feed/Stock/StockFeed.php
r2909979 r2957720 91 91 // Normal generating 92 92 } else if ($this->isNormal($productsPerStep, $productsList)) { 93 $file = $this->xmlOutputDir . 'stock_' . $this->token . '.xml';93 $file = $this->xmlOutputDir . $this->getFeedFileName(); 94 94 95 95 $this->logger->info('Stock feed generator started'); … … 205 205 protected function mergeTemporaryFiles() : bool 206 206 { 207 $storage = $this->xmlOutputDir . $this-> name . $this->token . '.xml';207 $storage = $this->xmlOutputDir . $this->getFeedFileName(); 208 208 $tmpShopDir = $this->tmpOutputDir; 209 209 … … 248 248 return $totalProducts; 249 249 } 250 251 public function getDataForTemplates(): array 252 { 253 $result = parent::getDataForTemplates(); 254 255 $result['createExportInMergadoUrl'] = false; 256 257 return $result; 258 } 250 259 }
Note: See TracChangeset
for help on using the changeset viewer.