How to set catalog mode globally?

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!

Viewing 3 reply threads
  • Author
    Posts
    • #63665
      doms
      Guest

      How do I force catalog mode to all vendors? Currently I dont want the add to cart feature to my site. Everyone must use catalog mode and I dont want my users to manually check the Catalog mode and hide add to cart. How do I do this globally?

    • #64138
      WCFM Forum
      Keymaster

      Hi,

      Please add this code to your child theme’s functions.php –

      add_filter( 'wcfm_product_manage_fields_general', function( $general_fields, $product_id, $product_type ) {
      	if( isset( $general_fields['is_catalog'] ) ) {
      		$general_fields['is_catalog']['dfvalue'] = 'yes';
      	}
      	$general_fields = wcfm_hide_field( 'is_catalog', $general_fields );
      	return $general_fields;
      }, 150, 3 );
      
      add_filter( 'wcfm_product_fields_catalog_options', function( $catalog_fields, $product_id, $product_type ) {
      	if( isset( $catalog_fields['disable_add_to_cart'] ) ) {
      		$catalog_fields['disable_add_to_cart']['dfvalue'] = 'yes';
      	}
      	if( isset( $catalog_fields['disable_price'] ) ) {
      		//$catalog_fields['disable_price']['dfvalue'] = 'yes';
      	}
      	$general_fields = wcfm_hide_field( 'disable_add_to_cart', $general_fields );
      	//$general_fields = wcfm_hide_field( 'disable_price', $general_fields );
      	return $catalog_fields;
      }, 150, 3 );

      If you do not have any child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/

      Thank You

    • #64185
      doms
      Guest

      Thank, I will use snippets

    • #64862
      WCFM Forum
      Keymaster

      Welcome 🙂

Viewing 3 reply threads
  • The topic ‘How to set catalog mode globally?’ is closed to new replies.