View style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
-webkit-user-select: none; /* Safari */ | |
-moz-user-select: none; /* Firefox */ | |
-ms-user-select: none; /* IE10+/Edge */ | |
user-select: none; /* Standard */ | |
} |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'woocommerce_checkout_process', 'automatic_validation_eu_vat' ); | |
function automatic_validation_eu_vat() { | |
$vat = str_replace( array( ' ', '.', '-', ',', ',' ), '', wc_clean( $_POST['billing_vat'] ) ); | |
if ( ! empty( $vat ) ) { | |
$response = wp_remote_get( "http://ec.europa.eu/taxation_customs/vies/vatResponse.html?ms=" . substr( $vat, 0, 2 ) . "&iso=" . substr( $vat, 2 ) ); | |
if ( is_wp_error( $response ) ) { | |
wc_add_notice( 'There was a problem connecting to the VAT validation service. Please try again later.', 'error' ); | |
} else { |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'woocommerce_structured_data_product', 'conditional_identifier_exists_false', 10, 2 ); | |
function conditional_identifier_exists_false( $markup, $product ) { | |
// Replace 'your-category-slug' with the actual slug of the category you want to target. | |
$target_category_slug = 'your-category-slug'; | |
if ( has_term( $target_category_slug, 'product_cat', $product->get_id() ) ) { | |
$markup['identifier_exists'] = 'no'; | |
} | |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'woocommerce_structured_data_product', 'add_identifier_exists_false' ); | |
function add_identifier_exists_false( $markup ) { | |
$markup['identifier_exists'] = 'no'; | |
return $markup; | |
} |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'woocommerce_after_order_itemmeta', 'admin_order_add_product_info_and_link', 10, 3 ); | |
function admin_order_add_product_info_and_link( $item_id, $item, $_product ) { | |
if ( ! $_product ) return; | |
$product_link = get_permalink( $_product->get_id() ); | |
$attributes_to_display = ['slug_1', 'slug_2', 'slug_3']; // Specify the attribute slugs you want to display | |
$target_product = $_product; | |
if ($_product->is_type('variation')) { |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Change add to cart text on single product page | |
add_filter( 'woocommerce_product_single_add_to_cart_text', 'change_add_to_cart_text' ); | |
function change_add_to_cart_text() { | |
return 'Add to Bag'; | |
} |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Change add to cart text on single product page | |
add_filter( 'woocommerce_product_single_add_to_cart_text', 'change_add_to_cart_text' ); | |
function change_add_to_cart_text() { | |
return 'Add to Bag'; | |
} | |
// Change add to cart text on product archives page | |
add_filter( 'woocommerce_product_add_to_cart_text', 'change_add_to_cart_text_archives' ); | |
function change_add_to_cart_text_archives() { |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Predefined email address | |
define('HIDDEN_EMAIL_ORDERS', 'email@tohide.com'); | |
// Add the checkbox | |
function add_email_filter_checkbox() { | |
global $typenow; | |
if ( 'shop_order' == $typenow ) { | |
$is_checked = isset( $_GET['hide_specific_email'] ) ? 'checked' : ''; |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Filter orders based on the entered email | |
function filter_orders_by_emails( $query ) { | |
global $typenow, $wpdb; | |
if ( 'shop_order' == $typenow && isset( $_GET['filter_emails'] ) && !empty( $_GET['filter_emails'] ) ) { | |
$emails = array_map('sanitize_email', explode(',', $_GET['filter_emails'])); | |
$order_ids = $wpdb->get_col( "SELECT pm.post_id FROM {$wpdb->postmeta} pm WHERE pm.meta_key = '_billing_email' AND pm.meta_value IN ('" . join("','", $emails) . "')" ); |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add the input field | |
function add_email_filter() { | |
global $typenow; | |
if ( 'shop_order' == $typenow ) { | |
$current_emails = isset( $_GET['filter_emails'] ) ? sanitize_text_field( $_GET['filter_emails'] ) : ''; | |
echo '<input type="text" name="filter_emails" placeholder="Hide orders by email" value="' . esc_attr( $current_emails ) . '">'; | |
} | |
} |
NewerOlder