• I use Tera Wallet with Dokan Multivendors for 6 years. Suddenly, now it is not compatible again with Dokan. This plugin makes Vendor Selling Report is not working. Please help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • ConceptAlchemyCompany

    (@conceptalchemycompany)

    @wilabudi Was this actually a problem that was solved or was there some other conflict which interfered with Terra Wallet now being unable to function with Dokan Multivendors?

    Plugin Author Subrata Mal

    (@subratamal)

    @wilabudi @conceptalchemycompany we fix this in our GitHub repo here https://github.com/malsubrata/woo-wallet please download the plugin from here and let us know if the issue is fixed or not. We will push this on wordpress plugin directory in next update.

    Thread Starter wilabudi

    (@wilabudi)

    The problem is not fixed. I appreciate your effort to help us.

    Dang Ngoc Binh

    (@dangngocbinh)

    I have this problem with dokan plugin too. Can’t topup!

    ?I appreciate your effort to help us.
    Many thanks!

    Dang Ngoc Binh

    (@dangngocbinh)

    Hi @all,
    I have problem with Dokan plugin. It can’t topup.
    I found the cause was due to the Dokan plugin preventing product owners from buying their own products. And it blocks even administrators from buying their own products (product Topup too), so here’s the solution:

    add_filter('dokan_vendor_own_product_purchase_restriction', 'ftv_prevent_restriction_dokan_for_terra_wallet_product', 9999, 2);

    function ftv_prevent_restriction_dokan_for_terra_wallet_product($is_purchasable, $product){

    if(!function_exists('get_wallet_rechargeable_product')) return $is_purchasable;

    $recharse_product_id = get_wallet_rechargeable_product()->get_id();
    if($product && $product->get_id() == $recharse_product_id){
    return true;
    }
    return $is_purchasable;
    }

    Hope it helps everyone a lot!

    Plugin Author Subrata Mal

    (@subratamal)

    @dangngocbinh Thanks for reporting this issue we will fix this in our next plugin update.

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this review.