Plugin Directory

Changeset 3156806


Ignore:
Timestamp:
09/24/2024 10:03:28 AM (17 months ago)
Author:
PurpleTurtlePro
Message:

fatal error fix

Location:
exportfeed-for-woocommerce-product-to-etsy/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • exportfeed-for-woocommerce-product-to-etsy/trunk/core/classes/SingleVariationUploadManager.php

    r3154364 r3156806  
    163163    public function getFormattedVariation( $available_variations, $available_variations_listing, $feed_id, $profileid, $first_upload, $reupload, $failed_flag, $pid, $offeringPrices = null ) {
    164164        $seperator           = $this->getSeperator( $profileid );
     165        if (empty($seperator)) {
     166            $seperator = '-';
     167        }
    165168        $EtsyFormatVariation = array();
    166169        $images              = array();
  • exportfeed-for-woocommerce-product-to-etsy/trunk/etsy-export-feed-setup.php

    r3143388 r3156806  
    8888            '_settings_mkey'   => 'etsy_dimensions_unit',
    8989            '_settings_mvalue' => 'in',
     90        ),
     91        array(
     92            '_settings_mkey'   => 'variation_seperation',
     93            '_settings_mvalue' => '-',
    9094        ),
    9195        array(
  • exportfeed-for-woocommerce-product-to-etsy/trunk/exportfeed-for-etsy-product-feed.php

    r3156055 r3156806  
    66 * Description: Etsy Marketplace Integration for WooCommerce: sync products, orders, and inventory in real-time
    77 * Author: Digital Product Labs Inc.
    8  * Version: 6.3.3
     8 * Version: 6.3.4
    99 * Author URI: https://dpl.company/woocommerce-etsy-integration/
    1010 * License:  GPL2
     
    6767    $plugin_version_data = get_plugin_data( __FILE__ );
    6868    // Sets latest database version.
    69     $GLOBALS['etcpf_db_version'] = '8.52';
     69    $GLOBALS['etcpf_db_version'] = '8.53';
    7070    // Current version: used to show version throughout plugin pages.
    7171    define( 'ETCPF_PLUGIN_VERSION', $plugin_version_data['Version'] );
  • exportfeed-for-woocommerce-product-to-etsy/trunk/readme.txt

    r3156055 r3156806  
    44Requires at least: 5.8.0
    55Tested up to: 6.6.1
    6 Stable tag: 6.3.3
     6Stable tag: 6.3.4
    77Requires PHP: 5.4
    88License: GPLv2 or later
     
    111111
    112112== Changelog ==
     113= 6.3.4 2024/09/24 =
     114* Fix: Fatal Error while uploading the product.
     115
    113116= 6.3.3 2024/09/23 =
    114117* Updated: UI changes
Note: See TracChangeset for help on using the changeset viewer.