About the Tax of product hide custom

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM – Ultimate About the Tax of product hide custom

Viewing 5 reply threads
  • Author
    Posts
    • #29713
      MOHO
      Participant

      1. How could i hide the “Shippin only” option of “Tax Status” field?

      2. How could i hide “Tax Class field”?

      Attachments:
      You must be logged in to view attached files.
    • #29716
      d-n-13
      Participant

      Hi,

      Right click -> inspect on what you want see its class name then Use CSS Display:Hidden; attribute to hide it.

    • #29717
      MOHO
      Participant

      @d-n-13

      thanks

      I change at custom “wcfm-view-products-manage-tabs.php”

      WCfM could close it, thanks.

    • #29994
      WCFM Forum
      Member

      Hi,

      Kindly just disable “Tax” capability for vendors.

      Thank You

    • #30008
      MOHO
      Participant

      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

    • #30159
      WCFM Forum
      Member

      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

Viewing 5 reply threads
  • The topic ‘About the Tax of product hide custom’ is closed to new replies.