Modify initial store settings page

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 5 reply threads
  • Author
    Posts
    • #71737

      Hi,

      I would to like to modify the initial store settings page but I don’t know how to do this.
      It is the pages the seller has to fill in before arriving on his dashboard.

      Especially, I want delete the SEO and social pages (+ the steps bar) and just maintain store, payment and thank you.
      cf. the screenshot below

      Could you tell me how to do this ?

      I see in another topic theses lines of code, but I am not sure it can solve my issue and where i have to add the required code.
      add_filter( ‘wcfm_is_allow_vendor_seo_facebook’, ‘__return_false’ );
      add_filter( ‘wcfm_is_allow_vendor_seo_twitter’, ‘__return_false’ );

      Thank you very much
      Aurélien.

      Attachments:
      You must be logged in to view attached files.
    • #72251
      WCFM Forum
      Keymaster

      Hi,

      Please add this two line using this plugin – https://wordpress.org/plugins/code-snippets/

      add_filter( 'wcfm_is_allow_setup_seo_settings', '__return_false' );
      add_filter( 'wcfm_is_allow_setup_social_profile', '__return_false' );

      Thank You

    • #78063

      Hello, thanks a lot, it works well !

      Could you tell me how to delete payment step in the initial store settings ?
      I try this code but it doesn’t work : add_filter( ‘wcfm_is_allow_setup_payment_settings’, ‘__return_false’ );

      Thank you
      Regards
      Aurélien.

    • #78807
      WCFM Forum
      Keymaster

      HI,

      Please use this code –

      add_filter('wcfmmp_store_setup_steps', function( $default_steps ) {
      	if( isset(  $default_steps['payment'] ) ) { unset( $default_steps['payment'] ); }
      	return $default_steps;
      });

      Thank You

    • #78837

      Thank you ! It works well !
      Aurélien

    • #79174
      WCFM Forum
      Keymaster

      You are always welcome 🙂

      Let me know if there’s anything else we can help you with.
      Can we ask for a favor? Would you mind taking a few minutes to review our plugin at WordPress and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter @wcfmmp for more exciting news, important updates, and irresistible offers.

Viewing 5 reply threads
  • You must be logged in to reply to this topic.