Plugin Directory

Changeset 3305555


Ignore:
Timestamp:
06/03/2025 08:54:20 AM (9 months ago)
Author:
nikelschubert
Message:
  • NEW: new field for premium add on: 'leave item name empty'
Location:
order-export-to-lexware-opentrans-for-woocommerce
Files:
37 added
3 edited

Legend:

Unmodified
Added
Removed
  • order-export-to-lexware-opentrans-for-woocommerce/trunk/README.txt

    r3294280 r3305555  
    66Requires PHP: 7.4
    77License: GPLv3 with Additional Terms
    8 Stable tag: 1.7.1
     8Stable tag: 1.7.2
    99
    1010Exports WooCommerce orders to Lexware. This plugin exports the orders to an openTRANS XML file to be used in Lexware or other suitable systems.
     
    4141
    4242== Changelog ==
     43
     44= 1.7.2 =
     45
     46* NEW: new field for premium add on: 'leave item name empty'
    4347
    4448= 1.7.1 =
  • order-export-to-lexware-opentrans-for-woocommerce/trunk/order-to-lexware-nscwto.php

    r3294280 r3305555  
    77 * Plugin Name:       Order Export to Lexware (openTrans) for WooCommerce
    88 * Description:       Export WooCommerce orders to an openTRANS xml file
    9  * Version:           1.7.1
     9 * Version:           1.7.2
    1010 * Author:            Beautiful WP | made in Germany
    1111 * Author URI:        https://beautiful-wp.com/
     
    4242}
    4343
    44 define('NSC_WTO_VERSION', '1.7.1');
     44define('NSC_WTO_VERSION', '1.7.2');
    4545define("NSC_WTO_PLUGIN_DIR", dirname(__FILE__));
    4646define("NSC_WTO_PLUGIN_URL", plugin_dir_url(__FILE__));
  • order-export-to-lexware-opentrans-for-woocommerce/trunk/plugin-configs.json

    r3294260 r3305555  
    234234          },
    235235          {
     236            "field_slug": "export_item_name_as",
     237            "type": "select",
     238            "save_as": "string",
     239            "required": false,
     240            "selectable_values": [
     241              { "value": "standard", "name": "Standard" },
     242              { "value": "empty", "name": "Empty" }
     243            ],
     244            "extra_validation_name": false,
     245            "pre_selected_value": "no",
     246            "helpertext": "'Empty' will leave the item name empty. Lexware will then get the item name from its internal item database. This makes sure you always have the up to date name. 'Standard' will export the item name as it is depending on other settings, like 'Export Item Attributes'.",
     247            "name": "Item Name Export",
     248            "disabled": true,
     249            "save_in_db": true
     250          },
     251          {
    236252            "field_slug": "export_file_type",
    237253            "type": "select",
Note: See TracChangeset for help on using the changeset viewer.