Plugin Directory

Changeset 2583247


Ignore:
Timestamp:
08/16/2021 01:55:01 AM (5 years ago)
Author:
delyva
Message:

version 1.1.14

Location:
delyvax/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • delyvax/trunk/changelog.txt

    r2581190 r2583247  
    55This file contains older changelog entries, so we can keep the size of the standard WordPress readme.txt file reasonable.
    66For 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
    712
    813= 1.1.9 =
  • delyvax/trunk/delyvax.php

    r2581190 r2583247  
    44    Plugin URI: https://delyva.com
    55    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.13
     6    Version: 1.1.14
    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.13');
     15    define('DELYVAX_PLUGIN_VERSION', '1.1.14');
    1616
    1717    require_once plugin_dir_path(__FILE__) . 'functions.php';
  • delyvax/trunk/functions.php

    r2581190 r2583247  
    479479          $order_notes = 'Order No: #'.$main_order->get_id().':';
    480480
     481              foreach ( $sub_order->get_items() as $item )
     482              {
     483                     $product_id = $item->get_product_id();
     484              }
     485
    481486          foreach ($sub_orders as $sub)
    482487          {
     
    509514              }else if(function_exists(wcfm_get_vendor_id_by_post))
    510515              {
    511                   $vendor_id = wcfm_get_vendor_id_by_post( $sub_order->get_id() );
     516                          $vendor_id = wcfm_get_vendor_id_by_post( $product_id );
    512517
    513518                  $store_info = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true );
     
    590595          $product_store_name = get_bloginfo( 'name' );
    591596
     597          foreach ( $main_order->get_items() as $item )
     598          {
     599              $product_id = $item->get_product_id();
     600              }
     601
    592602          if(function_exists(dokan_get_seller_id_by_order) && function_exists(dokan_get_store_info))
    593603          {
     
    610620          }else if(function_exists(wcfm_get_vendor_id_by_post))
    611621          {
    612               $vendor_id = wcfm_get_vendor_id_by_post( $main_order->get_id() );
     622              $vendor_id = wcfm_get_vendor_id_by_post( $product_id );
    613623
    614624              $store_info = get_user_meta( $vendor_id, 'wcfmmp_profile_settings', true );
  • delyvax/trunk/readme.txt

    r2581190 r2583247  
    3434== Changelog ==
    3535
     36= 1.1.14 =
     37*Release Date - 16 Aug 2021*
     38
     39* Bug fixes for order from WCFM vendor information.
     40
    3641= 1.1.13 =
    3742*Release Date - 08 Aug 2021*
     
    4954* Source of referral to identify delivery orders comes from woocommerce or web design agency
    5055
    51 = 1.1.10 =
    52 *Release Date - 15 June 2021*
    53 
    54 * Fix bug where plugin deletes unrelated webhook
    55 
    5656For 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.