Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Feature Request › POS Integration
Tagged: POS Integration with WCFM
- This topic has 8 replies, 2 voices, and was last updated 4 years, 10 months ago by shomonrobie.
- AuthorPosts
- December 15, 2019 at 3:37 am #97484shomonrobieParticipant
I am looking in to an option that vendors can use WCFM as their POS system as well. So, Vendors can manage their sales and inventory from the sale from their shop and through the marketplace as well. Products sold from the shop will be commission free and products sold through the marketplace will be subject to commission.
This could be addition module for WCFM and Ultimate.
We could play extra for this additional feature.
- December 24, 2019 at 10:27 am #98877WCFM ForumMember
- December 24, 2019 at 11:23 am #98904shomonrobieParticipant
Hi,
I have downloaded it and installed it and have created a link from Marketplace>Dashboard>Settings>Menu Manager>New Menu with following Settings:
Label: POS
Icon: fa-cash-register
URL: https://www.babui.com.bd/wepos/#/
Menu for: All Users
Open In New TAB: YesBut when my vendors click on the menu, he is redirecting to POS Page, https://www.babui.com.bd/wepos/#/, but he does not see any products at all.
But I can see all the products when I am logged in as Admin.
Do you have any solution?
Please note that I am using free version of wePOS. If it works, I will buy premium version.Attachments:
You must be logged in to view attached files. - December 24, 2019 at 11:26 am #98906shomonrobieParticipant
Also, they said that “wePOS is not compatible with WCFM multi-vendor for now.”
https://wordpress.org/support/topic/does-it-work-with-multi-vendor-wcfm-plugin/ - December 24, 2019 at 12:22 pm #98921shomonrobieParticipant
There was a discussion about using Woocommerce POS:
https://wclovers.com/forums/topic/woocommerce-pos-for-vendors/ - December 24, 2019 at 1:10 pm #98922WCFM ForumMember
Well, this integration comes from our end, not from wePOS plugin.
Please add this code to your site –
add_filter( 'woocommerce_rest_check_permissions', function( $permission, $context, $object_id, $post_type ) { if( wcfm_is_vendor() ) { if( ( $post_type == 'product' ) && ( $context == 'read' ) ) { $permission = true; } } return $permission; }, 50, 4 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- December 24, 2019 at 3:30 pm #98945shomonrobieParticipant
Hi,
Thank you very much for your quick reply. It is working now.
Is it possible make commission 0% for the sales done through wePOS? What I want is that my vendors will not pay me any commission when they will sell their products through wePOS but will pay commission when they will sell through online?
Thank you in advance.
- December 28, 2019 at 11:57 am #99696WCFM ForumMember
HI,
Sure, please add this code to your site for the purpose-
add_filter( 'wcfmmp_product_commission_rule', function( $product_commission_rule, $product_id, $vendor_id, $item_price, $quantity, $order_id, $vendor_commission_mode ) { $order = wc_get_order( $order_id ); if( $order && is_a($order , 'WC_Order') ) { $created_via = $order->get_created_via(); if( $created_via && in_array( $created_via, apply_filters( 'wcfmmp_new_order_check_created_via', array( 'wepos' ) ) ) ) { $product_commission_rule['mode'] = 'percent'; $product_commission_rule['percent'] = 100; $product_commission_rule['fixed'] = 0; } } return $product_commission_rule; }, 50, 7 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- December 30, 2019 at 3:09 pm #100018shomonrobieParticipant
Hi,
We are having following issues with order list and order detail (from the vendor dashboard):If order places by customer contains different products from different vendors, vendors in their dashboard, having the following issues in their order list and order detail page:
Products Sold through WePOS:
1. Order List Page: Shows only Purchase Item [1 item 1x] , whereas there were multiple items purchased.
2. Gross Sale and Earnings Shows Different Amount after deducting the commission though order was placed using wePOS and activating the code provided by you NOT to deduct commission on orders from wePOS.
3.In the order detail page, all the items from the order are showed, but total and subtotal is wrong.Pleas find the attached document for screenshot.Products Sold Through Woocommerce:
1. Order List Page: Shows only Purchase Item [1 item 1x] , whereas there were multiple items purchased.
2. In the order detail page, vendor1 have all the items from all the vendors bought through the order, whereas vendor1 should be seeing only his/her products in the order detail page.
3. Subtoal and Total amount is wrong.Need a solution urgently.
Thank you in advance for your help.
Br//Robie
Attachments:
You must be logged in to view attached files.
- AuthorPosts
- The topic ‘POS Integration’ is closed to new replies.