Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › About the Tax of product hide custom
- This topic has 5 replies, 3 voices, and was last updated 6 years, 2 months ago by WCFM Forum.
Viewing 5 reply threads
- AuthorPosts
- August 25, 2018 at 5:33 pm #29713
- August 25, 2018 at 6:27 pm #29716d-n-13Participant
Hi,
Right click -> inspect on what you want see its class name then Use CSS Display:Hidden; attribute to hide it.
- August 25, 2018 at 7:15 pm #29717
- August 28, 2018 at 6:01 pm #29994WCFM ForumMember
Hi,
Kindly just disable “Tax” capability for vendors.
Thank You
- August 28, 2018 at 8:33 pm #30008MOHOParticipant
I reply at another post:
Because we need to use “Tax” status option for each product.
We just no need the vendor choose “Tax class”
https://wclovers.com/forums/topic/how-could-i-hide-the-tax-class-of-each-variable-option/#post-29986 - August 29, 2018 at 9:24 pm #30159WCFM ForumMember
Hi,
Here is the code for the purpose –
function wcfm_product_manage_fields_variations_hide_tax( $variation_fields ) { if( isset( $variation_fields['tax_class'] ) ) { $variation_fields['tax_class']['class'] = 'wcfm_custom_hide'; $variation_fields['tax_class']['label_class'] = 'wcfm_custom_hide'; } return $variation_fields; } add_filter( 'wcfm_product_manage_fields_variations', 'wcfm_product_manage_fields_variations_hide_tax', 50 );
I am closing this thread, please communicate on the other thread.
Thank You
- AuthorPosts
Viewing 5 reply threads
- The topic ‘About the Tax of product hide custom’ is closed to new replies.