Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Feature Request › Editing Store Setup Form
- This topic has 6 replies, 4 voices, and was last updated 4 years, 5 months ago by reigningkingforever.
- AuthorPosts
- February 15, 2020 at 9:14 pm #107296hayati.akyuzParticipant
Hi,
How can i edit to Store Setup Box (form). İ want to add button, ADD YOUR FİRST PRODUCT and etc.
İ want to create a form like my image on the attach.
Thanks.
Attachments:
You must be logged in to view attached files. - February 15, 2020 at 9:51 pm #107301CraigParticipant
Following
This would be good to know if we can do this. - February 16, 2020 at 12:06 am #107308hayati.akyuzParticipant
Yea. i think this is must be in next update for all wcfm lovers..
- February 17, 2020 at 1:24 pm #107439Sarmistha ChakrabortyMember
Hello,
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
add_filter('wcfmmp_store_setup_steps','fn_wcfmmp_store_setup_steps'); function fn_wcfmmp_store_setup_steps($default_steps) { $default_steps['introduction']['view'] = 'custom_wcfmmp_store_setup_introduction'; return $default_steps; } function custom_wcfmmp_store_setup_introduction(){ ?> <!--Add your required content--> <h1><?php printf( __("Welcome to %s!", 'wc-multivendor-marketplace'), get_bloginfo('title') ); ?></h1> <p><?php printf( __('Thank you for choosing %s! This quick setup wizard will help you to configure the basic settings and you will have your store ready in no time.', 'wc-multivendor-marketplace'), get_bloginfo('title') ); ?></p> <p><?php esc_html_e("If you don't want to go through the wizard right now, you can skip and return to the dashboard. You may setup your store from dashboard › setting anytime!", 'wc-multivendor-marketplace'); ?></p> <p class="wc-setup-actions step"> <a href="<?php echo esc_url(get_wcfm_url()).'/products/'; ?>" class="button-primary button button-large button-next wcfm_submit_button"><?php esc_html_e("Add First Product", 'wc-frontend-manager'); ?></a> <a href="<?php echo esc_url(get_wcfm_url()); ?>" class="button button-large"><?php esc_html_e('Dashboard', 'wc-frontend-manager'); ?></a> </p> <?php }
Thanks.
- February 19, 2020 at 6:20 am #107736hayati.akyuzParticipant
Great. İts worked for me! Thanks…
- February 19, 2020 at 10:56 am #107744Sarmistha ChakrabortyMember
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 https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/ and let others know about your 5 Star experience with WCFM Marketplace. Also, follow us on Twitter https://twitter.com/wcfmmp for more exciting news, important updates, and irresistible offers.
- June 26, 2020 at 6:57 pm #144353reigningkingforeverParticipant
I have added the code snippet, but i cant see any changes. I want to remove some fields from the shop setup.. e.g Bank Address, Bank Routing Number.
I don’t want them to show on the shop setup and in the vendor settings page.
How can I do this please?
- AuthorPosts
- You must be logged in to reply to this topic.