Plugin Directory

Changeset 2825940


Ignore:
Timestamp:
11/29/2022 01:11:21 PM (3 years ago)
Author:
delyva
Message:

v1.1.38

Location:
delyvax/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • delyvax/trunk/delyvax.php

    r2815247 r2825940  
    44    Plugin URI: https://delyva.com
    55    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.37
     6    Version: 1.1.38
    77    Author: Delyva
    88    Author URI: https://delyva.com
     
    1313    defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
    1414    define('DELYVAX_API_ENDPOINT', 'https://api.delyva.app/');
    15     define('DELYVAX_PLUGIN_VERSION', '1.1.37');
     15    define('DELYVAX_PLUGIN_VERSION', '1.1.38');
    1616
    1717    require_once plugin_dir_path(__FILE__) . 'functions.php';
  • delyvax/trunk/functions.php

    r2815247 r2825940  
    501501      if($multivendor_option == 'DOKAN')
    502502      {
    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'))
    504504          {
    505505              $seller_id = dokan_get_seller_id_by_order($main_order->get_id());
     
    527527      }else if($multivendor_option == 'WCFM')
    528528      {
    529           if(function_exists(wcfm_get_vendor_id_by_post))
     529          if(function_exists('wcfm_get_vendor_id_by_post'))
    530530          {
    531531              $vendor_id = wcfm_get_vendor_id_by_post( $product_id );
  • delyvax/trunk/includes/delyvax-shipping.php

    r2815247 r2825940  
    546546            if($multivendor_option == 'DOKAN')
    547547            {
    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'))
    549549                {
    550550                    $seller_id = $package['seller_id'];
     
    574574            }else if($multivendor_option == 'WCFM')
    575575            {
    576                 if(function_exists(wcfm_get_vendor_id_by_post))
     576                if(function_exists('wcfm_get_vendor_id_by_post'))
    577577                {
    578578                    $vendor_id = wcfm_get_vendor_id_by_post( $product_id );
  • delyvax/trunk/readme.txt

    r2815247 r2825940  
    44Requires at least: 5.4
    55Tested up to: 5.7
    6 Stable tag: 1.1.37
     6Stable tag: 1.1.38
    77Requires PHP: 7.2
    88License: GPLv3
     
    3232
    3333== Changelog ==
     34
     35= 1.1.38 =
     36*Release Date - 29th November 2022*
     37
     38* Supports PHP 8.0, 8.1
    3439
    3540= 1.1.37 =
Note: See TracChangeset for help on using the changeset viewer.