Remove virtual & downloadable products selection?

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 WC Marketplace Remove virtual & downloadable products selection?

Viewing 3 reply threads
  • Author
    Posts
    • #97389
      voc.marcello
      Participant

      How Remove virtual & downloadable products selection?
      Thank you

    • #97532

      Hello,

      Turn off the “virtual” and “downloadable” product capability from store-manager dashboard. (PFA)

      Thanks.

      Attachments:
      You must be logged in to view attached files.
    • #97551
      voc.marcello
      Participant

      I not have this in my store-manager dashboard.

      • #98892
        WCFM Forum
        Member

        Hi,

        You have this under WCFM Dashboard -> Capability Setting

        If you are using only WCFM Free addon then add this code for the purpose-

        add_filter( 'wcfm_product_manage_fields_general', function( $general_fields, $product_id, $product_type ) {
        	if( isset( $general_fields['is_virtual'] ) ) {
        		
        		$general_fields['is_virtual']['class'] = 'wcfm_custom_hide';
        		$general_fields['is_virtual']['desc_class'] = 'wcfm_custom_hide';
        	}
        	if( isset( $general_fields['is_downloadable'] ) ) {
        		
        		$general_fields['is_downloadable']['class'] = 'wcfm_custom_hide';
        		$general_fields['is_downloadable']['desc_class'] = 'wcfm_custom_hide';
        	}
        	return $general_fields;
        }, 50, 3 );

        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

    • #97640

      Hello,

      Setup the WCFM page from WCFM options (PFA).
      Or can you share us the site admin details. Then we can check your settings.

      Thanks.

      Attachments:
      You must be logged in to view attached files.
Viewing 3 reply threads
  • The topic ‘Remove virtual & downloadable products selection?’ is closed to new replies.