Enabled product bundles
This commit is contained in:
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php
Normal file → Executable file
18
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php
Normal file → Executable file
18
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php
Normal file → Executable file
@@ -1372,7 +1372,13 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
|
||||
foreach ( $this->get_shipping_methods() as $item_id => $item ) {
|
||||
$taxes = $item->get_taxes();
|
||||
foreach ( $taxes['total'] as $tax_rate_id => $tax ) {
|
||||
$shipping_taxes[ $tax_rate_id ] = isset( $shipping_taxes[ $tax_rate_id ] ) ? $shipping_taxes[ $tax_rate_id ] + (float) $tax : (float) $tax;
|
||||
$tax_amount = (float) $tax;
|
||||
|
||||
if ( 'yes' !== get_option( 'woocommerce_tax_round_at_subtotal' ) ) {
|
||||
$tax_amount = wc_round_tax_total( $tax_amount );
|
||||
}
|
||||
|
||||
$shipping_taxes[ $tax_rate_id ] = isset( $shipping_taxes[ $tax_rate_id ] ) ? $shipping_taxes[ $tax_rate_id ] + $tax_amount : $tax_amount;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1429,13 +1435,13 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
|
||||
|
||||
// Sum line item costs.
|
||||
foreach ( $this->get_items() as $item ) {
|
||||
$cart_subtotal += $item->get_subtotal();
|
||||
$cart_total += $item->get_total();
|
||||
$cart_subtotal += round( $item->get_subtotal(), wc_get_price_decimals() );
|
||||
$cart_total += round( $item->get_total(), wc_get_price_decimals() );
|
||||
}
|
||||
|
||||
// Sum shipping costs.
|
||||
foreach ( $this->get_shipping_methods() as $shipping ) {
|
||||
$shipping_total += $shipping->get_total();
|
||||
$shipping_total += round( $shipping->get_total(), wc_get_price_decimals() );
|
||||
}
|
||||
|
||||
$this->set_shipping_total( $shipping_total );
|
||||
@@ -1703,7 +1709,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
|
||||
// Show shipping excluding tax.
|
||||
$shipping = wc_price( $this->get_shipping_total(), array( 'currency' => $this->get_currency() ) );
|
||||
|
||||
if ( $this->get_shipping_tax() !== 0 && $this->get_prices_include_tax() ) {
|
||||
if ( (float) $this->get_shipping_tax() > 0 && $this->get_prices_include_tax() ) {
|
||||
$shipping .= apply_filters( 'woocommerce_order_shipping_to_display_tax_label', ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>', $this, $tax_display );
|
||||
}
|
||||
} else {
|
||||
@@ -1711,7 +1717,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order {
|
||||
// Show shipping including tax.
|
||||
$shipping = wc_price( $this->get_shipping_total() + $this->get_shipping_tax(), array( 'currency' => $this->get_currency() ) );
|
||||
|
||||
if ( $this->get_shipping_tax() !== 0 && ! $this->get_prices_include_tax() ) {
|
||||
if ( (float) $this->get_shipping_tax() > 0 && ! $this->get_prices_include_tax() ) {
|
||||
$shipping .= apply_filters( 'woocommerce_order_shipping_to_display_tax_label', ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>', $this, $tax_display );
|
||||
}
|
||||
}
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-privacy.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-privacy.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php
Normal file → Executable file
@@ -1314,7 +1314,7 @@ class WC_Product extends WC_Abstract_Legacy_Product {
|
||||
$this->set_stock_status( 'onbackorder' );
|
||||
|
||||
// If the stock level is changing and we do now have enough, force in stock status.
|
||||
} elseif ( $this->get_stock_quantity() > get_option( 'woocommerce_notify_no_stock_amount', 0 ) && ( array_key_exists( 'stock_quantity', $this->get_changes() ) || array_key_exists( 'manage_stock', $this->get_changes() ) ) ) {
|
||||
} elseif ( $this->get_stock_quantity() > get_option( 'woocommerce_notify_no_stock_amount', 0 ) ) {
|
||||
$this->set_stock_status( 'instock' );
|
||||
}
|
||||
}
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-crud-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-crud-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-posts-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-posts-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-shipping-zones-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-shipping-zones-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-terms-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-rest-terms-controller.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php
Normal file → Executable file
6
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php
Normal file → Executable file
6
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php
Normal file → Executable file
@@ -708,7 +708,7 @@ abstract class WC_Settings_API {
|
||||
<legend class="screen-reader-text"><span><?php echo wp_kses_post( $data['title'] ); ?></span></legend>
|
||||
<select class="select <?php echo esc_attr( $data['class'] ); ?>" name="<?php echo esc_attr( $field_key ); ?>" id="<?php echo esc_attr( $field_key ); ?>" style="<?php echo esc_attr( $data['css'] ); ?>" <?php disabled( $data['disabled'], true ); ?> <?php echo $this->get_custom_attribute_html( $data ); // WPCS: XSS ok. ?>>
|
||||
<?php foreach ( (array) $data['options'] as $option_key => $option_value ) : ?>
|
||||
<option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $option_key, esc_attr( $this->get_option( $key ) ) ); ?>><?php echo esc_attr( $option_value ); ?></option>
|
||||
<option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( (string) $option_key, esc_attr( $this->get_option( $key ) ) ); ?>><?php echo esc_attr( $option_value ); ?></option>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<?php echo $this->get_description_html( $data ); // WPCS: XSS ok. ?>
|
||||
@@ -761,11 +761,11 @@ abstract class WC_Settings_API {
|
||||
<?php if ( is_array( $option_value ) ) : ?>
|
||||
<optgroup label="<?php echo esc_attr( $option_key ); ?>">
|
||||
<?php foreach ( $option_value as $option_key_inner => $option_value_inner ) : ?>
|
||||
<option value="<?php echo esc_attr( $option_key_inner ); ?>" <?php selected( in_array( $option_key_inner, $value, true ), true ); ?>><?php echo esc_attr( $option_value_inner ); ?></option>
|
||||
<option value="<?php echo esc_attr( $option_key_inner ); ?>" <?php selected( in_array( (string) $option_key_inner, $value, true ), true ); ?>><?php echo esc_attr( $option_value_inner ); ?></option>
|
||||
<?php endforeach; ?>
|
||||
</optgroup>
|
||||
<?php else : ?>
|
||||
<option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( in_array( $option_key, $value, true ), true ); ?>><?php echo esc_attr( $option_value ); ?></option>
|
||||
<option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( in_array( (string) $option_key, $value, true ), true ); ?>><?php echo esc_attr( $option_value ); ?></option>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php
Normal file → Executable file
@@ -187,7 +187,7 @@ abstract class WC_Widget extends WP_Widget {
|
||||
$instance[ $key ] = empty( $new_instance[ $key ] ) ? 0 : 1;
|
||||
break;
|
||||
default:
|
||||
$instance[ $key ] = sanitize_text_field( $new_instance[ $key ] );
|
||||
$instance[ $key ] = isset( $new_instance[ $key ] ) ? sanitize_text_field( $new_instance[ $key ] ) : $setting['std'];
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/class-wc-background-process.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/abstracts/class-wc-background-process.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php
Normal file → Executable file
25
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php
Normal file → Executable file
25
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php
Normal file → Executable file
@@ -32,7 +32,7 @@ if ( ! class_exists( 'WC_Admin_Assets', false ) ) :
|
||||
global $wp_scripts;
|
||||
|
||||
$screen = get_current_screen();
|
||||
$screen_id = $screen ? $screen->id: '';
|
||||
$screen_id = $screen ? $screen->id : '';
|
||||
|
||||
// Register admin styles.
|
||||
wp_register_style( 'woocommerce_admin_menu_styles', WC()->plugin_url() . '/assets/css/menu.css', array(), WC_VERSION );
|
||||
@@ -161,23 +161,24 @@ if ( ! class_exists( 'WC_Admin_Assets', false ) ) :
|
||||
|
||||
$params = array(
|
||||
/* translators: %s: decimal */
|
||||
'i18n_decimal_error' => sprintf( __( 'Please enter in decimal (%s) format without thousand separators.', 'woocommerce' ), $decimal ),
|
||||
'i18n_decimal_error' => sprintf( __( 'Please enter in decimal (%s) format without thousand separators.', 'woocommerce' ), $decimal ),
|
||||
/* translators: %s: price decimal separator */
|
||||
'i18n_mon_decimal_error' => sprintf( __( 'Please enter in monetary decimal (%s) format without thousand separators and currency symbols.', 'woocommerce' ), wc_get_price_decimal_separator() ),
|
||||
'i18n_country_iso_error' => __( 'Please enter in country code with two capital letters.', 'woocommerce' ),
|
||||
'i18_sale_less_than_regular_error' => __( 'Please enter in a value less than the regular price.', 'woocommerce' ),
|
||||
'i18_delete_product_notice' => __( 'This product has produced sales and may be linked to existing orders. Are you sure you want to delete it?', 'woocommerce' ),
|
||||
'decimal_point' => $decimal,
|
||||
'mon_decimal_point' => wc_get_price_decimal_separator(),
|
||||
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
||||
'strings' => array(
|
||||
'i18n_mon_decimal_error' => sprintf( __( 'Please enter in monetary decimal (%s) format without thousand separators and currency symbols.', 'woocommerce' ), wc_get_price_decimal_separator() ),
|
||||
'i18n_country_iso_error' => __( 'Please enter in country code with two capital letters.', 'woocommerce' ),
|
||||
'i18n_sale_less_than_regular_error' => __( 'Please enter in a value less than the regular price.', 'woocommerce' ),
|
||||
'i18n_delete_product_notice' => __( 'This product has produced sales and may be linked to existing orders. Are you sure you want to delete it?', 'woocommerce' ),
|
||||
'i18n_remove_personal_data_notice' => __( 'This action cannot be reversed. Are you sure you wish to erase personal data from the selected orders?', 'woocommerce' ),
|
||||
'decimal_point' => $decimal,
|
||||
'mon_decimal_point' => wc_get_price_decimal_separator(),
|
||||
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
||||
'strings' => array(
|
||||
'import_products' => __( 'Import', 'woocommerce' ),
|
||||
'export_products' => __( 'Export', 'woocommerce' ),
|
||||
),
|
||||
'nonces' => array(
|
||||
'nonces' => array(
|
||||
'gateway_toggle' => wp_create_nonce( 'woocommerce-toggle-payment-gateway-enabled' ),
|
||||
),
|
||||
'urls' => array(
|
||||
'urls' => array(
|
||||
'import_products' => current_user_can( 'import' ) ? esc_url_raw( admin_url( 'edit.php?post_type=product&page=product_importer' ) ) : null,
|
||||
'export_products' => current_user_can( 'export' ) ? esc_url_raw( admin_url( 'edit.php?post_type=product&page=product_exporter' ) ) : null,
|
||||
),
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php
Normal file → Executable file
@@ -360,7 +360,7 @@ if ( ! class_exists( 'WC_Admin_Dashboard', false ) ) :
|
||||
<script type="text/template" id="network-orders-row-template">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="<%- edit_url %>" class="order-view"><strong>#<%- id %> <%- customer %></strong></a>
|
||||
<a href="<%- edit_url %>" class="order-view"><strong>#<%- number %> <%- customer %></strong></a>
|
||||
<br>
|
||||
<em>
|
||||
<%- blog.blogname %>
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php
Normal file → Executable file
39
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php
Normal file → Executable file
39
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php
Normal file → Executable file
@@ -34,6 +34,7 @@ class WC_Admin_Notices {
|
||||
'simplify_commerce' => 'simplify_commerce_notice',
|
||||
'regenerating_thumbnails' => 'regenerating_thumbnails_notice',
|
||||
'no_secure_connection' => 'secure_connection_notice',
|
||||
'wootenberg' => 'wootenberg_feature_plugin_notice',
|
||||
);
|
||||
|
||||
/**
|
||||
@@ -49,6 +50,7 @@ class WC_Admin_Notices {
|
||||
|
||||
if ( current_user_can( 'manage_woocommerce' ) ) {
|
||||
add_action( 'admin_print_styles', array( __CLASS__, 'add_notices' ) );
|
||||
add_action( 'activate_gutenberg/gutenberg.php', array( __CLASS__, 'add_wootenberg_feature_plugin_notice_on_gutenberg_activate' ) );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -91,6 +93,7 @@ class WC_Admin_Notices {
|
||||
WC_Admin_Notices::add_notice( 'no_secure_connection' );
|
||||
}
|
||||
|
||||
WC_Admin_Notices::add_wootenberg_feature_plugin_notice();
|
||||
self::add_notice( 'template_files' );
|
||||
}
|
||||
|
||||
@@ -357,6 +360,42 @@ class WC_Admin_Notices {
|
||||
|
||||
include dirname( __FILE__ ) . '/views/html-notice-secure-connection.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* If Gutenberg is active, tell people about the Products block feature plugin.
|
||||
*
|
||||
* @since 3.4.3
|
||||
* @todo Remove this notice and associated code once the feature plugin has been merged into core.
|
||||
*/
|
||||
public static function add_wootenberg_feature_plugin_notice() {
|
||||
if ( is_plugin_active( 'gutenberg/gutenberg.php' ) && ! is_plugin_active( 'woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php' ) ) {
|
||||
self::add_notice( 'wootenberg' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tell people about the Products block feature plugin when they activate Gutenberg.
|
||||
*
|
||||
* @since 3.4.3
|
||||
* @todo Remove this notice and associated code once the feature plugin has been merged into core.
|
||||
*/
|
||||
public static function add_wootenberg_feature_plugin_notice_on_gutenberg_activate() {
|
||||
if ( ! is_plugin_active( 'woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php' ) ) {
|
||||
self::add_notice( 'wootenberg' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Notice about trying the Products block.
|
||||
*/
|
||||
public static function wootenberg_feature_plugin_notice() {
|
||||
if ( get_user_meta( get_current_user_id(), 'dismissed_wootenberg_notice', true ) || is_plugin_active( 'woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php' ) ) {
|
||||
self::remove_notice( 'wootenberg' );
|
||||
return;
|
||||
}
|
||||
|
||||
include dirname( __FILE__ ) . '/views/html-notice-wootenberg.php';
|
||||
}
|
||||
}
|
||||
|
||||
WC_Admin_Notices::init();
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php
Normal file → Executable file
@@ -2106,7 +2106,7 @@ class WC_Admin_Setup_Wizard {
|
||||
|
||||
<div class="woocommerce-message woocommerce-newsletter">
|
||||
<p><?php esc_html_e( "We're here for you — get tips, product updates, and inspiration straight to your mailbox.", 'woocommerce' ); ?></p>
|
||||
<form action="//woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971" method="post" target="_blank" novalidate>
|
||||
<form action="//woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin" method="post" target="_blank" novalidate>
|
||||
<div class="newsletter-form-container">
|
||||
<input
|
||||
class="newsletter-form-email"
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php
Normal file → Executable file
16
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php
Normal file → Executable file
16
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php
Normal file → Executable file
@@ -207,6 +207,22 @@ class WC_Admin_Webhooks_Table_List extends WP_List_Table {
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Process bulk actions.
|
||||
*/
|
||||
public function process_bulk_action() {
|
||||
$action = $this->current_action();
|
||||
$webhooks = isset( $_REQUEST['webhook'] ) ? array_map( 'absint', (array) $_REQUEST['webhook'] ) : array(); // WPCS: input var okay, CSRF ok.
|
||||
|
||||
if ( ! current_user_can( 'manage_woocommerce' ) ) {
|
||||
wp_die( esc_html__( 'You do not have permission to edit Webhooks', 'woocommerce' ) );
|
||||
}
|
||||
|
||||
if ( 'delete' === $action ) {
|
||||
WC_Admin_Webhooks::bulk_delete( $webhooks );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate the table navigation above or below the table.
|
||||
* Included to remove extra nonce input.
|
||||
|
||||
29
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php
Normal file → Executable file
29
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php
Normal file → Executable file
@@ -150,7 +150,7 @@ class WC_Admin_Webhooks {
|
||||
*
|
||||
* @param array $webhooks List of webhooks IDs.
|
||||
*/
|
||||
private function bulk_delete( $webhooks ) {
|
||||
public static function bulk_delete( $webhooks ) {
|
||||
foreach ( $webhooks as $webhook_id ) {
|
||||
$webhook = new WC_Webhook( (int) $webhook_id );
|
||||
$webhook->delete( true );
|
||||
@@ -179,27 +179,6 @@ class WC_Admin_Webhooks {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Bulk actions.
|
||||
*/
|
||||
private function bulk_actions() {
|
||||
check_admin_referer( 'woocommerce-settings' );
|
||||
|
||||
if ( ! current_user_can( 'manage_woocommerce' ) ) {
|
||||
wp_die( esc_html__( 'You do not have permission to edit Webhooks', 'woocommerce' ) );
|
||||
}
|
||||
|
||||
if ( isset( $_REQUEST['action'] ) ) { // WPCS: input var okay, CSRF ok.
|
||||
$webhooks = isset( $_REQUEST['webhook'] ) ? array_map( 'absint', (array) $_REQUEST['webhook'] ) : array(); // WPCS: input var okay, CSRF ok.
|
||||
|
||||
$action = sanitize_text_field( wp_unslash( $_REQUEST['action'] ) ); // WPCS: input var okay, CSRF ok.
|
||||
|
||||
if ( 'delete' === $action ) {
|
||||
$this->bulk_delete( $webhooks );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Webhooks admin actions.
|
||||
*/
|
||||
@@ -210,11 +189,6 @@ class WC_Admin_Webhooks {
|
||||
$this->save();
|
||||
}
|
||||
|
||||
// Bulk actions.
|
||||
if ( isset( $_REQUEST['action'] ) && isset( $_REQUEST['webhook'] ) ) { // WPCS: input var okay, CSRF ok.
|
||||
$this->bulk_actions();
|
||||
}
|
||||
|
||||
// Delete webhook.
|
||||
if ( isset( $_GET['delete'] ) ) { // WPCS: input var okay, CSRF ok.
|
||||
$this->delete();
|
||||
@@ -299,6 +273,7 @@ class WC_Admin_Webhooks {
|
||||
$count = count( $data_store->get_webhooks_ids() );
|
||||
|
||||
if ( 0 < $count ) {
|
||||
$webhooks_table_list->process_bulk_action();
|
||||
$webhooks_table_list->prepare_items();
|
||||
|
||||
echo '<input type="hidden" name="page" value="wc-settings" />';
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php
Normal file → Executable file
2
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php
Normal file → Executable file
@@ -575,7 +575,7 @@ class WC_Product_CSV_Importer_Controller {
|
||||
* @return string
|
||||
*/
|
||||
protected function sanitize_special_column_name_regex( $value ) {
|
||||
return '/' . str_replace( array( '%d', '%s' ), '(.*)', quotemeta( $value ) ) . '/';
|
||||
return '/' . str_replace( array( '%d', '%s' ), '(.*)', trim( quotemeta( $value ) ) ) . '/';
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php
Normal file → Executable file
3
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php
Normal file → Executable file
3
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php
Normal file → Executable file
@@ -644,6 +644,9 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table {
|
||||
|
||||
// Sanity check: bail out if this is actually not a status, or is not a registered status.
|
||||
if ( isset( $order_statuses[ 'wc-' . $new_status ] ) ) {
|
||||
// Initialize payment gateways in case order has hooked status transition actions.
|
||||
wc()->payment_gateways();
|
||||
|
||||
foreach ( $ids as $id ) {
|
||||
$order = wc_get_order( $id );
|
||||
$order->update_status( $new_status, __( 'Order status changed by bulk edit:', 'woocommerce' ), true );
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php
Normal file → Executable file
14
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php
Normal file → Executable file
14
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php
Normal file → Executable file
@@ -332,7 +332,9 @@ class WC_Meta_Box_Order_Data {
|
||||
|
||||
$field_name = 'billing_' . $key;
|
||||
|
||||
if ( is_callable( array( $order, 'get_' . $field_name ) ) ) {
|
||||
if ( isset( $field['value'] ) ) {
|
||||
$field_value = $field['value'];
|
||||
} elseif ( is_callable( array( $order, 'get_' . $field_name ) ) ) {
|
||||
$field_value = $order->{"get_$field_name"}( 'edit' );
|
||||
} else {
|
||||
$field_value = $order->get_meta( '_' . $field_name );
|
||||
@@ -365,10 +367,12 @@ class WC_Meta_Box_Order_Data {
|
||||
|
||||
$field_name = 'billing_' . $key;
|
||||
|
||||
if ( is_callable( array( $order, 'get_' . $field_name ) ) ) {
|
||||
$field['value'] = $order->{"get_$field_name"}( 'edit' );
|
||||
} else {
|
||||
$field['value'] = $order->get_meta( '_' . $field_name );
|
||||
if ( ! isset( $field['value'] ) ) {
|
||||
if ( is_callable( array( $order, 'get_' . $field_name ) ) ) {
|
||||
$field['value'] = $order->{"get_$field_name"}( 'edit' );
|
||||
} else {
|
||||
$field['value'] = $order->get_meta( '_' . $field_name );
|
||||
}
|
||||
}
|
||||
|
||||
switch ( $field['type'] ) {
|
||||
|
||||
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php
Normal file → Executable file
0
backend/wordpress/wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php
Normal file → Executable file
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user