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 | |
/* | |
By default, customers are allowed to input as many characters as they’d like in the “Message” field of a Gift Card form. | |
To limit the number of characters that are accepted in this field, you can use this snippet. | |
Note: This snippet sets a limit to 300 characters. To set a different limit, it is necessary to modify the value of the "maxlength" attribute. | |
*/ | |
add_action( 'init', 'sw_gc_set_message_limit' ); | |
function sw_gc_set_message_limit() { |
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 | |
/* | |
Below, is an example snippet of how to add a "Recipient Name" field to the Gift Cards by WooCommerce extension | |
Adding a new field in this form is a technically demanding task, as it must: | |
- be displayed in the single product page, | |
- be validated when the Add to Cart button is clicked, | |
- be included in the Gift Cards Importer/Exporter and; | |
- be included as a placeholder in WooCommerce > Settings > Emails > Gift Card received. |
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_bundle_front_end_params', 'sw_pb_enable_zoom_bundled_items_images' ); | |
function sw_pb_enable_zoom_bundled_items_images( $frontend_params ) { | |
$frontend_params[ 'zoom_enabled' ] = 'yes'; | |
return $frontend_params; | |
} |
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 | |
/* | |
When you enable the Options Filtering option in a component, a field shows up where you can select some product attributes. | |
The selected attributes and their terms are shown on the front-end to be used as filters. | |
Composite Products does not perform any checks to make sure that at least one product exists for each term. | |
This is because enforcing these checks would have a significant performance impact on the page. | |
Use this snippet to automatically remove any terms that do not have any matching products. | |
*/ | |
add_filter( 'woocommerce_composite_component_filters', 'sw_cp_disable_empty_filters', 10, 3 ); |
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 | |
/* | |
Use this snippet to set a default quantity for a component of a composite product. | |
Before using this snippet, replace 1234 with the ID of the component for which you’d like to set a default quantity. | |
You can find the ID of each component by: navigating to Product Data > Components and hovering over a specific component | |
*/ | |
add_filter( 'woocommerce_composited_product_quantity', 'sw_wc_cp_set_default_quantity', 10, 6 ); |
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_adjust_non_base_location_prices', '__return_false' ); |
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_order_hide_zero_taxes', '__return_false' ); |
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_product_get_tax_class', 'big_apple_get_tax_class', 1, 2 ); | |
function big_apple_get_tax_class( $tax_class, $product ) { | |
if ( WC()->cart->subtotal <= 110 ) | |
$tax_class = 'Zero Rate'; | |
return $tax_class; | |
} |
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_add_to_cart_validation', 'check_if_product_exists_in_cart', 10, 2 ); | |
function check_if_product_exists_in_cart( $is_valid, $product_id ) { | |
$product = wc_get_product( $product_id ); | |
if ( $product->is_sold_individually() ) { |
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
<?xml version="1.0"?> | |
<ruleset name="WordPress Coding Standards"> | |
<description>WooCommerce extension PHP_CodeSniffer ruleset.</description> | |
<!-- Exclude paths --> | |
<exclude-pattern>tests/</exclude-pattern> | |
<exclude-pattern>woo-includes/woo-functions.php</exclude-pattern> | |
<exclude-pattern>woo-includes/class-wc-dependencies.php</exclude-pattern> | |
<exclude-pattern>*/node_modules/*</exclude-pattern> | |
<exclude-pattern>*/vendor/*</exclude-pattern> |
NewerOlder