Remove Banner + Catalog

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
    • #36086
      Ximena
      Guest

      Hi,

      I have two questions.

      1. I want to remove banners on vendors admin page. How can I do that?
      2. How can I activate catalog mode?

      Thanks in advance,

    • #36118
      WCFM Forum
      Keymaster

      HI,

      Thanks for get in touch with us.

      1. I want to remove banners on vendors admin page. How can I do that?
      – Can you please know me which you are indicating “vendors admin page”? Better show me screenshot.

      2. How can I activate catalog mode?
      – Don’t you have “Catalog” option at Product manager? https://ibb.co/kwkBLA
      If not, then please enable catalog module from WCFM Admin Setting -> Modules -> Catalog Module

      Thank You

    • #36148
      Ximena
      Guest

      Thanks for your quick answer!

      1. Here you have the screenshot: https://paste.pics/102b97bc8b8af0c99ff1a5b8ffc775ce
      2. Great! Thanks
      3. Can I disable the visual and download button? https://paste.pics/b7ad6fd18d1517b6f89eb82116a8a03e

      Regards!

    • #36208
      WCFM Forum
      Keymaster

      Hi,

      1. Here you have the screenshot: Kindly add this line of code for the purpose –
      add_filter( 'wcfm_is_allow_store_banner', '__return_false' );

      3. Can I disable the visual and download button? – Kindly add this code for the purpose –

      function wcfm_custom_product_manage_fields_general( $general_fileds, $product_id, $product_type ) {
      	global $WCFM;
      	if( isset( $general_fileds['is_virtual'] ) ) {
      		$general_fileds['is_virtual']['class'] = 'wcfm_custom_hide';
      		$general_fileds['is_virtual']['desc_class'] = 'wcfm_custom_hide';
      	}
      	if( isset( $general_fileds['is_downloadable'] ) ) {
      		$general_fileds['is_downloadable']['class'] = 'wcfm_custom_hide';
      		$general_fileds['is_downloadable']['desc_class'] = 'wcfm_custom_hide';
      	}
      	return $general_fileds;
      }
      add_filter( 'wcfm_product_manage_fields_general', 'wcfm_custom_product_manage_fields_general', 150, 3 );

      Thank You

Viewing 3 reply threads
  • The topic ‘Remove Banner + Catalog’ is closed to new replies.