Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Feature Request › Vendors and Taxes capability
Tagged: capability, tax, taxes, vendors
- This topic has 7 replies, 2 voices, and was last updated 5 years, 12 months ago by WCFM Forum.
- AuthorPosts
- November 13, 2018 at 6:31 pm #36634MustafaParticipant
Hi,
After enabling Tax at WooCommerce settings and added VAT in standard rates.
In WCFM dashboard, I created two groups one ‘Vend 1’, ‘Vend 2’
I set ‘Taxes’ capability ON for ‘Vend 1’ and OFF for ‘Vend 2’I noticed the following:
Customers who are buying products see Tax rates at checkout. Even though, this product belongs to ‘Vend 2’ group with Taxes capability set to OFF.
Customers should not see any tax for any kind of products that ‘Vend 2’ vendors are posting or should be Zero.How can this be fixed?
Thanks
- November 17, 2018 at 4:08 am #36878WCFM ForumMember
HI,
As you have set OFF tax for VND2, so are not allowed to setup Tax for the product – https://ibb.co/npupc0
But tax will be applied on their products.
Do you want set Tax Status “None” for this vendor group?
Thank You
- November 17, 2018 at 10:30 am #36918MustafaParticipant
Exactly, that’s what I want. This group with no tax capability should be None for them. Because Tax might not be applied to them.
- November 17, 2018 at 3:15 pm #36950WCFM ForumMember
Hi,
We will take care of this in next update.
For the timing you may add this code for the purpose –
add_filter( 'wcfm_product_data_factory', function( $wcfm_data, $new_product_id, $product, $wcfm_products_manage_form_data ) { if( !apply_filters( 'wcfm_is_allow_tax', true ) || !apply_filters( 'wcfm_is_allow_pm_tax', true ) ) { $wcfm_data['tax_status'] = 'none'; } return $wcfm_data; }, 50, 4 );
Thank You
- November 18, 2018 at 6:49 pm #37021MustafaParticipant
Will this be activated even if I add this code to function.php in the child-theme?
- November 19, 2018 at 5:27 pm #37107WCFM ForumMember
Hi,
This code is no more required, we have added this in WCFM latest version – 5.1.9
Please update yours and take a look.
Thank You
- November 19, 2018 at 8:50 pm #37132MustafaParticipant
Hi,
Issue is resolved. Thank you! - November 20, 2018 at 5:27 am #37163WCFM ForumMember
Great .. you are welcome 🙂
- AuthorPosts
- The topic ‘Vendors and Taxes capability’ is closed to new replies.