Plugin Directory

Changeset 2957720


Ignore:
Timestamp:
08/24/2023 08:27:49 AM (2 years ago)
Author:
mergado
Message:

3.6.3

Location:
mergado-marketing-pack/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • mergado-marketing-pack/trunk/README.txt

    r2956525 r2957720  
    11=== Mergado Pack ===
    2 Stable tag: 3.6.2
     2Stable tag: 3.6.3
    33Contributors: mergado
    44Donate link: https://pack.mergado.com/woocommerce
     
    264264
    265265== 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
    266271= 3.6.2 =
    267272* FIX: Sklik - type error on PHP 8
  • mergado-marketing-pack/trunk/admin/templates/partials/components/wizard/step4a.php

    r2909979 r2957720  
    4343                            <div>
    4444                                <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 } ?>
    4646                                >
    4747                            </div>
  • mergado-marketing-pack/trunk/mergado-marketing-pack.php

    r2956525 r2957720  
    1717 * Plugin URI:        https://www.mergado.cz
    1818 * Description:       Earn more on price comparator sites. <strong>REQUIRES: Woocommerce</strong>
    19  * Version:           3.6.2
     19 * Version:           3.6.3
    2020 * Author:            Mergado technologies, s. r. o.
    2121 * Author URI:        https://www.mergado.cz
     
    4444}
    4545
    46 define('PLUGIN_VERSION', '3.6.2');
     46define('PLUGIN_VERSION', '3.6.3');
    4747define('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'));
    4848define( '__MERGADO_DIR__', plugin_dir_path( __FILE__ ) );
  • mergado-marketing-pack/trunk/src/Feed/Category/CategoryFeed.php

    r2909979 r2957720  
    8282                    // Normal generating
    8383                } else if ($this->isNormal($categoriesPerStep, $categoryList)) {
    84                     $file = $this->xmlOutputDir . 'category_' . $this->token . '.xml';
     84                    $file = $this->xmlOutputDir . $this->getFeedFileName();
    8585
    8686                    $this->logger->info('Category feed generator started');
  • mergado-marketing-pack/trunk/src/Feed/Customer/CustomerFeed.php

    r2909979 r2957720  
    8484                    // Normal generating
    8585                } else if ($this->isNormal($customersPerStep, $customerList)) {
    86                     $file = $this->xmlOutputDir . $this->name . '_' . $this->token . '.xml';
     86                    $file = $this->xmlOutputDir . $this->getFeedFileName();
    8787
    8888                    $this->logger->info('Customer feed generator started');
  • mergado-marketing-pack/trunk/src/Feed/Stock/StockFeed.php

    r2909979 r2957720  
    9191                // Normal generating
    9292                } else if ($this->isNormal($productsPerStep, $productsList)) {
    93                     $file = $this->xmlOutputDir . 'stock_' . $this->token . '.xml';
     93                    $file = $this->xmlOutputDir . $this->getFeedFileName();
    9494
    9595                    $this->logger->info('Stock feed generator started');
     
    205205    protected function mergeTemporaryFiles() : bool
    206206    {
    207         $storage = $this->xmlOutputDir . $this->name . $this->token . '.xml';
     207        $storage = $this->xmlOutputDir . $this->getFeedFileName();
    208208        $tmpShopDir = $this->tmpOutputDir;
    209209
     
    248248        return $totalProducts;
    249249    }
     250
     251    public function getDataForTemplates(): array
     252    {
     253        $result = parent::getDataForTemplates();
     254
     255        $result['createExportInMergadoUrl'] = false;
     256
     257        return $result;
     258    }
    250259}
Note: See TracChangeset for help on using the changeset viewer.