Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Membership › Modify initial store settings page
- This topic has 5 replies, 2 voices, and was last updated 5 years, 2 months ago by WCFM Forum.
- AuthorPosts
- July 9, 2019 at 8:47 pm #71737aurelien_boutillierParticipant
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 belowCould 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. - July 13, 2019 at 7:32 am #72251WCFM ForumMember
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
- August 23, 2019 at 8:14 pm #78063aurelien_boutillierParticipant
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. - August 28, 2019 at 5:24 pm #78807WCFM ForumMember
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
- August 28, 2019 at 9:22 pm #78837aurelien_boutillierParticipant
Thank you ! It works well !
Aurélien - August 30, 2019 at 7:42 am #79174WCFM ForumMember
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.
- AuthorPosts
- You must be logged in to reply to this topic.