Forum Replies Created
- AuthorPosts
- thiemann.kParticipant
– You mean, if Admin add a product in this category then all vendors will be notified?
– no…
I have a category where product inquiries come in. if a seller has this product, or can create, then he can respond to it.
Now I would like all Vendors to always receive an email or a notification when a product is added in category “228”.is that possible?
Thanks
thiemann.kParticipantHey…. I know … a little bit confusing.
In germany it is the case that those who sell without VAT (§19b UStG) have to show this in their products as well.
example:
Vendor ABC (membership_group_1) sells a product incl. VAT.Vendor XYZ (membership_group_2) sells a product without having to pay taxes. (This is not to be compared with VAT!)
your previous post (https://wclovers.com/forums/topic/different-taxes-for-different-groups/#post-70187) helped me anyway!
Because this attitude does not need those who pay no taxes.
that was very good!Now it’s just about the right display in the shop.
I try again what I want to show in a code. I hope you understand me.
function override_tax_display_setting() {
if ( vendor_user(‘membership_group_1’) ) {
return “excl”;
} else {
return “incl”;
}
if ( vendor_user(‘membership_group_2’) ) {
return “excl”;
} else {
return “Kleinunternehmer nach §19 (1) UStG”;
}ciao, karsten
thiemann.kParticipantWow! that looks very good!
Now one more thing: if group 1, then incl. VAT, if group 2, then excl. VAT.
I’ll add one code, it will definitely make something.
that’s too high for me ^^add_filter(‘pre_option_woocommerce_tax_display_shop’, ‘override_tax_display_setting’);
add_filter(‘pre_option_woocommerce_tax_display_cart’, ‘override_tax_display_setting’);
function override_tax_display_setting() {
if ( current_user_can(‘membership_group_2’) ) {
return “excl”;
} else {
return “incl”;
}
}—- —– —– —– —–
Ciao, Karstenthiemann.kParticipantFirst of all thanks for your answer! – But is that what i need?
If I understand correctly, then this attitude is about whether the “fees” are more expensive.
my question was about another topic (https://wclovers.com/forums/topic/product-with-and-without-tax-19-ustg/)
Here you have also answered me, but this must be set individually for each article, whether this taxed or not. But that’s not what I need, too.
in principle, yes – but this attitude must then make each seller himself.I would like to solve this through membership!
In Germany, a distinction is made whether someone is selling commercially, or whether you have a “small business license” ($ 19 Ustg.).
I hope you understand what i mean.My Idea:
All products, from members in membership-group 1, have taxes.
If a member in Group 2, these products have no taxes.I hope that somehow you can solve it.
Best regards!
Karstenthiemann.kParticipantWow! just great!!! …it looks so easy….. Thank you!!!
thiemann.kParticipantNow, you may decided which membership users will receive product tax and which not!
Can you tell me how to do that?
I only find the option in the Membership General Options.
What do I have to do so that I can say Group 1 pays tax, Group 2 pays none.Thank you!!
thiemann.kParticipantHey,
no, we are not there yet. So it’s definitely not a cache optimizer. - AuthorPosts