Advertisement
wclovers

Untitled

Jun 9th, 2023
711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. add_filter('wcfm_store_setup_welcome_heading', function () {
  2.     return sprintf(__("Welcome to %s!", 'wc-multivendor-marketplace'), get_bloginfo('title'));
  3. });
  4. add_filter('wcfm_store_setup_welcome_message', function () {
  5.     return sprintf(__('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'));
  6. });
  7. add_filter('wcfm_store_setup_welcome_footer', function () {
  8.     return esc_html__("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');
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement