Changeset 3495198
- Timestamp:
- 03/31/2026 06:35:35 AM (6 days ago)
- Location:
- connect-plus-for-woocommerce
- Files:
-
- 40 added
- 7 edited
-
tags/1.0.30 (added)
-
tags/1.0.30/README.txt (added)
-
tags/1.0.30/admin (added)
-
tags/1.0.30/admin/cpfw-connect-admin.php (added)
-
tags/1.0.30/admin/css (added)
-
tags/1.0.30/admin/css/cpfw-connect-admin.css (added)
-
tags/1.0.30/admin/index.php (added)
-
tags/1.0.30/admin/js (added)
-
tags/1.0.30/admin/js/cpfw-connect-admin.js (added)
-
tags/1.0.30/admin/partials (added)
-
tags/1.0.30/admin/partials/cpfw-connect-admin-send-btn.php (added)
-
tags/1.0.30/admin/views (added)
-
tags/1.0.30/admin/views/cpfw-connect-admin-settings.php (added)
-
tags/1.0.30/connect-plus-for-woocommerce.php (added)
-
tags/1.0.30/endpoints (added)
-
tags/1.0.30/endpoints/cpfw-connect-ajax-wrapper.php (added)
-
tags/1.0.30/endpoints/cpfw-connect-endpoints.php (added)
-
tags/1.0.30/endpoints/index.php (added)
-
tags/1.0.30/includes (added)
-
tags/1.0.30/includes/cpfw-connect-loader.php (added)
-
tags/1.0.30/includes/cpfw-connect-toggler.php (added)
-
tags/1.0.30/includes/cpfw-connect.php (added)
-
tags/1.0.30/includes/index.php (added)
-
tags/1.0.30/includes/services (added)
-
tags/1.0.30/includes/services/cpfw-connect-api.php (added)
-
tags/1.0.30/index.php (added)
-
tags/1.0.30/languages (added)
-
tags/1.0.30/languages/connect-plus-for-woocommerce-ar.mo (added)
-
tags/1.0.30/languages/connect-plus-for-woocommerce-ar.po (added)
-
tags/1.0.30/languages/connect-plus-for-woocommerce.pot (added)
-
tags/1.0.30/public (added)
-
tags/1.0.30/public/cpfw-connect-public.php (added)
-
tags/1.0.30/public/css (added)
-
tags/1.0.30/public/css/cpfw-public.css (added)
-
tags/1.0.30/public/index.php (added)
-
tags/1.0.30/public/js (added)
-
tags/1.0.30/public/js/cpfw-public.js (added)
-
tags/1.0.30/public/partials (added)
-
tags/1.0.30/public/partials/cpfw-public-display.php (added)
-
tags/1.0.30/uninstall.php (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/admin/cpfw-connect-admin.php (modified) (1 diff)
-
trunk/admin/views/cpfw-connect-admin-settings.php (modified) (1 diff)
-
trunk/connect-plus-for-woocommerce.php (modified) (2 diffs)
-
trunk/includes/services/cpfw-connect-api.php (modified) (1 diff)
-
trunk/languages/connect-plus-for-woocommerce-ar.po (modified) (1 diff)
-
trunk/languages/connect-plus-for-woocommerce.pot (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
connect-plus-for-woocommerce/trunk/README.txt
r3456541 r3495198 9 9 Tested up to: 6.9 10 10 11 Stable tag: 1.0. 2911 Stable tag: 1.0.30 12 12 13 13 Requires PHP: 7.0 -
connect-plus-for-woocommerce/trunk/admin/cpfw-connect-admin.php
r3456541 r3495198 285 285 return is_array($input) ? array_map('sanitize_text_field', $input) : []; 286 286 }, 287 ]); 288 289 register_setting('olivery_options_group', 'olivery_connect_use_order_number', [ 290 'type' => 'integer', 291 'sanitize_callback' => 'absint', 292 'default' => 0, 287 293 ]); 288 294 -
connect-plus-for-woocommerce/trunk/admin/views/cpfw-connect-admin-settings.php
r3456541 r3495198 148 148 <p class="description"> 149 149 <?php esc_html_e('Orders will be automatically sent to Connect Plus when they reach this status.', 'connect-plus-for-woocommerce'); ?> 150 </p> 151 </td> 152 </tr> 153 <tr> 154 <th scope="row"> 155 <label for="olivery_connect_use_order_number"> 156 <?php esc_html_e('Order Reference Field:', 'connect-plus-for-woocommerce'); ?> 157 </label> 158 </th> 159 <td> 160 <label class="cpfw-option-box" for="olivery_connect_use_order_number"> 161 <input type="checkbox" id="olivery_connect_use_order_number" name="olivery_connect_use_order_number" 162 value="1" <?php checked(get_option('olivery_connect_use_order_number', 0), 1); ?>> 163 <?php esc_html_e('Use Order Number instead of Order ID', 'connect-plus-for-woocommerce'); ?> 164 </label> 165 <p class="description"> 166 <?php esc_html_e('When enabled, the order number (which may differ from the internal ID if using sequential order number plugins) will be sent as the order reference to Connect Plus.', 'connect-plus-for-woocommerce'); ?> 150 167 </p> 151 168 </td> -
connect-plus-for-woocommerce/trunk/connect-plus-for-woocommerce.php
r3456541 r3495198 17 17 * Plugin URI: https://website.olivery.app/ 18 18 * Description: Plugin to help you connect WooCommerce with Connect Plus application 19 * Version: 1.0. 2919 * Version: 1.0.30 20 20 * Author: Olivery dev 21 21 * Text Domain: connect-plus-for-woocommerce … … 55 55 define('CPFW_PLUGIN_DIR', __DIR__); 56 56 57 define('PLUGIN_VERSION','1.0. 29');57 define('PLUGIN_VERSION','1.0.30'); 58 58 /** 59 59 * The code that runs during plugin activation. -
connect-plus-for-woocommerce/trunk/includes/services/cpfw-connect-api.php
r3401191 r3495198 257 257 "country_code": "", 258 258 "note": '.wp_json_encode($cpfw_the_order->get_customer_note()?:'', JSON_UNESCAPED_UNICODE).', 259 "order_reference": "' . $cpfw_the_order->get_id() . '", 259 "order_reference": "' . ((get_option('olivery_connect_use_order_number', 0) && method_exists($cpfw_the_order, 'get_order_number')) ? $cpfw_the_order->get_order_number() : $cpfw_the_order->get_id()) . '", 260 "ecommerce_order_id": "' . $cpfw_the_order->get_id() . '", 260 261 "product_info": ' . wp_json_encode($cpfw_products_detail?:'', JSON_UNESCAPED_UNICODE). ', 261 262 "package_cost": ' . $cpfw_the_order->get_subtotal() . ', -
connect-plus-for-woocommerce/trunk/languages/connect-plus-for-woocommerce-ar.po
r3456541 r3495198 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Connect Plus for WooCommerce 1.0. 29\n"5 "Project-Id-Version: Connect Plus for WooCommerce 1.0.30\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/connect-plus-for-" 7 7 "woocommerce\n" -
connect-plus-for-woocommerce/trunk/languages/connect-plus-for-woocommerce.pot
r3456541 r3495198 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Connect Plus for WooCommerce 1.0. 29\n"5 "Project-Id-Version: Connect Plus for WooCommerce 1.0.30\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/connect-plus-for-woocommerce\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
Note: See TracChangeset
for help on using the changeset viewer.