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 foreach ( $recurring_carts as $recurring_cart_key => $recurring_cart ) : ?> | |
<?php foreach ( $recurring_cart->get_fees() as $fee ) : ?> | |
<tr class="fee"> | |
<th><?php echo esc_html( $fee->name ); ?></th> | |
<td data-title="<?php echo esc_html( $fee->name ); ?>"><?php wc_cart_totals_fee_html( $fee ); ?></td> | |
</tr> | |
<?php endforeach; ?> | |
<?php endforeach; ?> |
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
/** | |
* Add a 1% surcharge to your cart / checkout | |
* change the $percentage to set the surcharge to a value to suit | |
* Uses the WooCommerce fees API | |
* | |
* Add to theme functions.php | |
*/ | |
add_action( 'woocommerce_cart_calculate_fees','woocommerce_custom_surcharge' ); | |
function woocommerce_custom_surcharge( $cart ) { | |
if ( is_admin() && ! defined( 'DOING_AJAX' ) ) { |
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
// Place this code in your theme's functions.php file | |
// Hook in | |
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); | |
// Our hooked in function - $fields is passed via the filter! | |
function custom_override_checkout_fields( $fields ) { | |
$fields['order']['order_comments']['required'] = true; | |
return $fields; | |
} |
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
'attributes' => array( | |
array( | |
'name' => 'Brand', | |
'slug' => 'pa_brand', | |
'options' => array( | |
'Kravet Basics' | |
), | |
'visible' => true | |
) | |
) |
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
add_filter( 'woocommerce_variable_free_price_html', 'hide_free_price_notice' ); | |
add_filter( 'woocommerce_free_price_html', 'hide_free_price_notice' ); | |
add_filter( 'woocommerce_variation_free_price_html', 'hide_free_price_notice' ); | |
/** | |
* Hides the 'Free!' price notice | |
*/ | |
function hide_free_price_notice( $price ) { | |
return ''; | |
} |
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
// Add this to your child theme's functions.php file | |
function wc_custom_cart_thumb( $thumb, $cart_item ) { | |
return get_the_post_thumbnail( $cart_item['product_id'], 'shop_thumbnail' ); | |
} | |
add_filter( 'woocommerce_cart_item_thumbnail', 'wc_custom_cart_thumb', 10, 2 ); |
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" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<handlers accessPolicy="Read, Execute, Script" /> | |
<rewrite> | |
<rules> | |
<rule name="wordpress" patternSyntax="Wildcard"> | |
<match url="*" /> | |
<conditions> | |
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> |
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 | |
/** | |
* Loop Add to Cart | |
*/ | |
global $product; | |
if( $product->get_price() === '' && $product->product_type != 'external' ) return; | |
?> | |
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
/** | |
* Function to remove the variable subscription price string | |
* Add this to your child theme's functions.php file. | |
*/ | |
function wc_remove_var_subscriptions_price() { | |
return ''; | |
} | |
add_filter( 'woocommerce_variable_subscription_price_html', 'wc_remove_var_subscriptions_price' ); |
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
/** Add this function to your theme's functions.php file | |
* to replace the "Persons" string in the Bookings form | |
* to be "Number of Loaves". | |
*/ | |
function my_text_strings( $translated_text, $text, $domain ) { | |
switch ( $translated_text ) { | |
case 'Persons' : | |
$translated_text = __( 'Number of Loaves', 'woocommerce-bookings' ); | |
break; | |
} |
NewerOlder