golden hour
/home/godaofbq/hyperbarichelp.com/wp-content/plugins/woocommerce/src/Internal/Admin/Notes
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
CustomizeStoreWithBlocks.php
2.35 KB
Del
OK
CustomizingProductCatalog.php
2.2 KB
Del
OK
EUVATNumber.php
1.63 KB
Del
OK
EditProductsOnTheMove.php
1.68 KB
Del
OK
EmailImprovements.php
2.82 KB
Del
OK
FirstProduct.php
2.18 KB
Del
OK
GivingFeedbackNotes.php
1.5 KB
Del
OK
InstallJPAndWCSPlugins.php
5.74 KB
Del
OK
LaunchChecklist.php
1.68 KB
Del
OK
MagentoMigration.php
2.45 KB
Del
OK
ManageOrdersOnTheGo.php
1.54 KB
Del
OK
MarketingJetpack.php
3.55 KB
Del
OK
MigrateFromShopify.php
2.21 KB
Del
OK
MobileApp.php
1.39 KB
Del
OK
NewSalesRecord.php
5.25 KB
Del
OK
NoteActionForbiddenException.php
1.3 KB
Del
OK
OnboardingPayments.php
1.74 KB
Del
OK
OnlineClothingStore.php
2.68 KB
Del
OK
OrderMilestones.php
9.15 KB
Del
OK
PaymentsMoreInfoNeeded.php
2.14 KB
Del
OK
PaymentsRemindMeLater.php
2.06 KB
Del
OK
PerformanceOnMobile.php
1.64 KB
Del
OK
PersonalizeStore.php
1.91 KB
Del
OK
RealTimeOrderAlerts.php
1.51 KB
Del
OK
ScheduledUpdatesPromotion.php
2.75 KB
Del
OK
SellingOnlineCourses.php
2.38 KB
Del
OK
TrackingOptIn.php
3.17 KB
Del
OK
UnsecuredReportFiles.php
2.12 KB
Del
OK
WooCommercePayments.php
6.25 KB
Del
OK
WooCommerceSubscriptions.php
1.88 KB
Del
OK
WooSubscriptionsNotes.php
13.25 KB
Del
OK
Edit: EmailImprovements.php
<?php /** * Adds a note when the email improvements feature is enabled for existing stores * or when the feature is not enabled to try the new templates. * * @since 9.9.0 */ declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\Admin\Notes; defined( 'ABSPATH' ) || exit; use Automattic\WooCommerce\Admin\Notes\Note; use Automattic\WooCommerce\Admin\Notes\NoteTraits; use Automattic\WooCommerce\Internal\Admin\EmailImprovements\EmailImprovements as EmailImprovementsFeature; /** * EmailImprovements */ class EmailImprovements { use NoteTraits; /** * Name of the note for use in the database. */ const NOTE_NAME = 'wc-admin-email-improvements'; /** * Get the note. * * @return Note|void */ public static function get_note() { if ( EmailImprovementsFeature::is_email_improvements_enabled_for_existing_stores() ) { return self::get_email_improvements_enabled_note(); } if ( EmailImprovementsFeature::should_notify_merchant_about_email_improvements() ) { return self::get_try_email_improvements_note(); } } /** * Get the note for when the email improvements feature is enabled for existing stores. * * @return Note */ private static function get_email_improvements_enabled_note() { $note = new Note(); $note->set_title( __( 'Your store emails have had an upgrade!', 'woocommerce' ) ); $note->set_content( __( 'We’ve made some exciting improvements to your email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new changes.', 'woocommerce' ) ); $note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->set_name( self::NOTE_NAME ); $note->set_source( 'woocommerce-admin' ); $note->add_action( 'customize-your-emails', __( 'Customize your emails', 'woocommerce' ), '?page=wc-settings&tab=email' ); return $note; } /** * Get the note for when the email improvements feature is disabled. * * @return Note */ private static function get_try_email_improvements_note() { $note = new Note(); $note->set_title( __( 'Store emails have had an upgrade!', 'woocommerce' ) ); $note->set_content( __( 'We’ve made some exciting improvements to our email templates, including modern, shopper-friendly designs and new customization options. And if you’re using a block theme, you can automatically sync your theme styles! Head to your email settings to explore the new features.', 'woocommerce' ) ); $note->set_type( Note::E_WC_ADMIN_NOTE_INFORMATIONAL ); $note->set_name( self::NOTE_NAME ); $note->set_source( 'woocommerce-admin' ); $note->add_action( 'try-the-new-templates', __( 'Try the new templates', 'woocommerce' ), '?page=wc-settings&tab=email&try-new-templates' ); return $note; } }
Save