Changeset 2825940
- Timestamp:
- 11/29/2022 01:11:21 PM (3 years ago)
- Location:
- delyvax/trunk
- Files:
-
- 4 edited
-
delyvax.php (modified) (2 diffs)
-
functions.php (modified) (2 diffs)
-
includes/delyvax-shipping.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
delyvax/trunk/delyvax.php
r2815247 r2825940 4 4 Plugin URI: https://delyva.com 5 5 description: The official Delyva plugin helps store owners to integrate WooCommerce with [Delyva](https://delyva.com) for seamless service comparison and order processing. 6 Version: 1.1.3 76 Version: 1.1.38 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.3 7');15 define('DELYVAX_PLUGIN_VERSION', '1.1.38'); 16 16 17 17 require_once plugin_dir_path(__FILE__) . 'functions.php'; -
delyvax/trunk/functions.php
r2815247 r2825940 501 501 if($multivendor_option == 'DOKAN') 502 502 { 503 if(function_exists( dokan_get_seller_id_by_order) && function_exists(dokan_get_store_info))503 if(function_exists('dokan_get_seller_id_by_order') && function_exists('dokan_get_store_info')) 504 504 { 505 505 $seller_id = dokan_get_seller_id_by_order($main_order->get_id()); … … 527 527 }else if($multivendor_option == 'WCFM') 528 528 { 529 if(function_exists( wcfm_get_vendor_id_by_post))529 if(function_exists('wcfm_get_vendor_id_by_post')) 530 530 { 531 531 $vendor_id = wcfm_get_vendor_id_by_post( $product_id ); -
delyvax/trunk/includes/delyvax-shipping.php
r2815247 r2825940 546 546 if($multivendor_option == 'DOKAN') 547 547 { 548 if(function_exists( dokan_get_seller_id_by_order) && function_exists(dokan_get_store_info))548 if(function_exists('dokan_get_seller_id_by_order') && function_exists('dokan_get_store_info')) 549 549 { 550 550 $seller_id = $package['seller_id']; … … 574 574 }else if($multivendor_option == 'WCFM') 575 575 { 576 if(function_exists( wcfm_get_vendor_id_by_post))576 if(function_exists('wcfm_get_vendor_id_by_post')) 577 577 { 578 578 $vendor_id = wcfm_get_vendor_id_by_post( $product_id ); -
delyvax/trunk/readme.txt
r2815247 r2825940 4 4 Requires at least: 5.4 5 5 Tested up to: 5.7 6 Stable tag: 1.1.3 76 Stable tag: 1.1.38 7 7 Requires PHP: 7.2 8 8 License: GPLv3 … … 32 32 33 33 == Changelog == 34 35 = 1.1.38 = 36 *Release Date - 29th November 2022* 37 38 * Supports PHP 8.0, 8.1 34 39 35 40 = 1.1.37 =
Note: See TracChangeset
for help on using the changeset viewer.