set_title( __( 'Design your store with Storefront 🎨', 'storefront' ) ); $note->set_content( __( 'Visit the Storefront settings page to start setup and customization of your shop.', 'storefront' ) ); $note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->set_name( self::NOTE_NAME ); $note->set_content_data( (object) array() ); $note->set_source( 'storefront' ); $note->add_action( 'customize-store-with-storefront', __( 'Let\'s go!', 'storefront' ), admin_url( 'themes.php?page=storefront-welcome' ), Note::E_WC_ADMIN_NOTE_ACTIONED, true ); return $note; } }