Changeset 2583247
- Timestamp:
- 08/16/2021 01:55:01 AM (5 years ago)
- Location:
- delyvax/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
delyvax.php (modified) (2 diffs)
-
functions.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
delyvax/trunk/changelog.txt
r2581190 r2583247 5 5 This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable. 6 6 For the latest changes, please see the "Changelog" section of the [readme.txt file](https://plugins.svn.wordpress.org/delyvax/trunk/readme.txt). 7 8 = 1.1.10 = 9 *Release Date - 15 June 2021* 10 11 * Fix bug where plugin deletes unrelated webhook 7 12 8 13 = 1.1.9 = -
delyvax/trunk/delyvax.php
r2581190 r2583247 4 4 Plugin URI: https://delyva.com 5 5 description: The official DelyvaX plugin helps store owners to integrate WooCommerce with [Delyva](https://delyva.com) for seamless service comparison and order processing. 6 Version: 1.1.1 36 Version: 1.1.14 7 7 Author: Delyva 8 8 Author URI: https://delyva.com … … 13 13 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 14 14 define('DELYVAX_API_ENDPOINT', 'https://api.delyva.app/'); 15 define('DELYVAX_PLUGIN_VERSION', '1.1.1 3');15 define('DELYVAX_PLUGIN_VERSION', '1.1.14'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/functions.php
r2581190 r2583247 479 479 $order_notes = 'Order No: #'.$main_order->get_id().':'; 480 480 481 foreach ( $sub_order->get_items() as $item ) 482 { 483 $product_id = $item->get_product_id(); 484 } 485 481 486 foreach ($sub_orders as $sub) 482 487 { … … 509 514 }else if(function_exists(wcfm_get_vendor_id_by_post)) 510 515 { 511 $vendor_id = wcfm_get_vendor_id_by_post( $sub_order->get_id());516 $vendor_id = wcfm_get_vendor_id_by_post( $product_id ); 512 517 513 518 $store_info = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true ); … … 590 595 $product_store_name = get_bloginfo( 'name' ); 591 596 597 foreach ( $main_order->get_items() as $item ) 598 { 599 $product_id = $item->get_product_id(); 600 } 601 592 602 if(function_exists(dokan_get_seller_id_by_order) && function_exists(dokan_get_store_info)) 593 603 { … … 610 620 }else if(function_exists(wcfm_get_vendor_id_by_post)) 611 621 { 612 $vendor_id = wcfm_get_vendor_id_by_post( $ main_order->get_id());622 $vendor_id = wcfm_get_vendor_id_by_post( $product_id ); 613 623 614 624 $store_info = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true ); -
delyvax/trunk/readme.txt
r2581190 r2583247 34 34 == Changelog == 35 35 36 = 1.1.14 = 37 *Release Date - 16 Aug 2021* 38 39 * Bug fixes for order from WCFM vendor information. 40 36 41 = 1.1.13 = 37 42 *Release Date - 08 Aug 2021* … … 49 54 * Source of referral to identify delivery orders comes from woocommerce or web design agency 50 55 51 = 1.1.10 =52 *Release Date - 15 June 2021*53 54 * Fix bug where plugin deletes unrelated webhook55 56 56 For older changelog entries, please see the [additional changelog.txt file](https://plugins.svn.wordpress.org/delyvax/trunk/changelog.txt) delivered with the plugin.
Note: See TracChangeset
for help on using the changeset viewer.