/
home
/
suroeste
/
public_html
/
wp-content
/
plugins
/
woocommerce
/
src
/
Internal
/
Admin
/
Notes
/
/home/suroeste/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Notes
mkdir
upload
Name
Size
Mode
Actions
AddFirstProduct.php
2853
0644
edit
dl
rm
ChoosingTheme.php
1478
0644
edit
dl
rm
CouponPageMoved.php
3891
0644
edit
dl
rm
CustomizeStoreWithBlocks.php
2403
0644
edit
dl
rm
CustomizingProductCatalog.php
2189
0644
edit
dl
rm
EditProductsOnTheMove.php
1716
0644
edit
dl
rm
EmailNotification.php
5288
0644
edit
dl
rm
EUVATNumber.php
1674
0644
edit
dl
rm
FirstProduct.php
2173
0644
edit
dl
rm
GivingFeedbackNotes.php
1538
0644
edit
dl
rm
InstallJPAndWCSPlugins.php
4690
0644
edit
dl
rm
LaunchChecklist.php
1720
0644
edit
dl
rm
MagentoMigration.php
2508
0644
edit
dl
rm
ManageOrdersOnTheGo.php
1577
0644
edit
dl
rm
MarketingJetpack.php
3765
0644
edit
dl
rm
MerchantEmailNotifications.php
3457
0644
edit
dl
rm
MigrateFromShopify.php
2264
0644
edit
dl
rm
MobileApp.php
1421
0644
edit
dl
rm
NewSalesRecord.php
5380
0644
edit
dl
rm
OnboardingPayments.php
1780
0644
edit
dl
rm
OnlineClothingStore.php
2745
0644
edit
dl
rm
OrderMilestones.php
9366
0644
edit
dl
rm
PaymentsMoreInfoNeeded.php
2056
0644
edit
dl
rm
PaymentsRemindMeLater.php
1982
0644
edit
dl
rm
PerformanceOnMobile.php
1677
0644
edit
dl
rm
PersonalizeStore.php
1958
0644
edit
dl
rm
RealTimeOrderAlerts.php
1546
0644
edit
dl
rm
SellingOnlineCourses.php
2432
0644
edit
dl
rm
TrackingOptIn.php
2821
0644
edit
dl
rm
UnsecuredReportFiles.php
2174
0644
edit
dl
rm
WooCommercePayments.php
6400
0644
edit
dl
rm
WooCommerceSubscriptions.php
1922
0644
edit
dl
rm
WooSubscriptionsNotes.php
14683
0644
edit
dl
rm
Edit:
/home/suroeste/public_html/wp-content/plugins/woocommerce/src/Internal/Admin/Notes/EUVATNumber.php
(1674B)
<?php /** * WooCommerce Admin: EU VAT Number Note. * * Adds a note for EU store to install the EU VAT Number extension. */ namespace Automattic\WooCommerce\Internal\Admin\Notes; defined( 'ABSPATH' ) || exit; use Automattic\WooCommerce\Admin\Notes\Note; use Automattic\WooCommerce\Admin\Notes\NoteTraits; /** * EU_VAT_Number */ class EUVATNumber { /** * Note traits. */ use NoteTraits; /** * Name of the note for use in the database. */ const NOTE_NAME = 'wc-admin-eu-vat-number'; /** * Get the note. * * @return Note */ public static function get_note() { if ( 'yes' !== get_option( 'wc_connect_taxes_enabled', 'no' ) ) { return; } $country_code = WC()->countries->get_base_country(); $eu_countries = WC()->countries->get_european_union_countries(); if ( ! in_array( $country_code, $eu_countries, true ) ) { return; } $content = __( "If your store is based in the EU, we recommend using the EU VAT Number extension in addition to automated taxes. It provides your checkout with a field to collect and validate a customer's EU VAT number, if they have one.", 'woocommerce' ); $note = new Note(); $note->set_title( __( 'Collect and validate EU VAT numbers at checkout', 'woocommerce' ) ); $note->set_content( $content ); $note->set_content_data( (object) array() ); $note->set_type( Note::E_WC_ADMIN_NOTE_MARKETING ); $note->set_name( self::NOTE_NAME ); $note->set_source( 'woocommerce-admin' ); $note->add_action( 'learn-more', __( 'Learn more', 'woocommerce' ), 'https://woocommerce.com/products/eu-vat-number/?utm_medium=product', Note::E_WC_ADMIN_NOTE_ACTIONED ); return $note; } }
Save
cmd:
run