Setup Wizard 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 4 reply threads
  • Author
    Posts
    • #70686
      support25
      Participant

      Hello how can change the css of the page setup wizard?
      the css in my child theme does not work
      ex:
      #wc-logo a{ color:#mycolor}

      and how to remove the state field and put a simple text field in the store description?

      and remove the SEO tab

      Thanks

    • #70968
      WCFM Forum
      Keymaster

      Hi,

      This line is require to remove SEO tab –

      add_filter( 'wcfm_is_allow_setup_seo_settings', '__return_false' );

      Pleas add your CSS using this plugin – https://wordpress.org/plugins/code-snippets/
      as theme does not work for setup widget page!

      DO you want to change short description field only at setup widget or at vendor’s setting panel as well?

      Thank you

    • #136616
      INEX Market
      Participant

      What would the code be that someone has to enter to remove the other tabs? Especially:

      Policies
      Customer Support
      Social

    • #136754

      Hello,

      Try this –

      add_filter( 'wcfm_is_allow_policy_settings', '__return_false' );
      add_filter( 'wcfm_is_allow_setup_customer_support', '__return_false' );
      add_filter( 'wcfm_is_allow_setup_social_profile', '__return_false' );

      Thanks.

    • #138415
      INEX Market
      Participant

      Thank you so much for helping us out! The quick responses really help convincing the company directors that we’re making the right choice in choosing for WCFM. Carry on. 😀

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