View web.config
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" /> |
View gist:c70dc98a099a9bf1c2f0
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
/** | |
* A function to reorder the default display of fields on the WooCommerce Bookings form | |
* Put this function in your theme's functions.php file | |
*/ | |
function custom_order_booking_fields ( $fields ) { | |
$reorder = array(); | |
$reorder[] = $fields['wc_bookings_field_duration']; // Duration | |
$reorder[] = $fields['wc_bookings_field_resource']; // Resource | |
$reorder[] = $fields['wc_bookings_field_persons']; // Persons |
View woocommerce-bookings-styles.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
/* | |
Modify the color styles of the WooCommerce Bookings datepicker calendar. | |
Add any/all of these styles to your theme's custom CSS, but be sure to change | |
the color hex codes to your choice. They're all black here. | |
*/ | |
/* Month header background color */ | |
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker-header { | |
background-color: #000000; | |
} |
View order-notes-required.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
// 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; | |
} |
View remove-var-subs-price.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
/** | |
* 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' ); |
View gist:a10148daa110119b262f
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
/* Change the "Proceed to PayPal" button text in the WooCommerce checkout screen | |
* Add this to your theme's functions.php file | |
*/ | |
add_filter( 'gettext', 'custom_paypal_button_text', 20, 3 ); | |
function custom_paypal_button_text( $translated_text, $text, $domain ) { | |
switch ( $translated_text ) { | |
case 'Proceed to PayPal' : | |
$translated_text = __( 'NEW BUTTON TEXT', 'woocommerce' ); | |
break; | |
} |
View gist:00f623326db4daa50394
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
/** | |
* Redirect the Continue Shopping URL from the default (most recent product) to | |
* a custom URL. | |
* Place this code snippet in your theme's functions.php file. | |
*/ | |
function custom_continue_shopping_redirect_url ( $url ) { | |
$url = "http://www.woothemes.com"; // Add your link here | |
return $url; | |
} | |
add_filter('woocommerce_continue_shopping_redirect', 'custom_continue_shopping_redirect_url'); |
View gist:0add508ce8c8d9debf23
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 wc_remove_recurrence_label() { | |
remove_filter( 'woocommerce_cart_shipping_method_full_label', 'WC_Subscriptions_Cart::get_cart_shipping_method_full_label', 11, 2 ); | |
} | |
add_action( 'init', 'wc_remove_recurrence_label' ); |
View hide-free-price-woocommerce.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
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 ''; | |
} |
View gist:469fb7b59e8d028a21e2
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
/** | |
* This stops the renew button from appearing in the My Account page once an order's been cancelled | |
* @param array $actions List of actions that subscriptions can do with each subscription (on top of | |
* WooCommerce) | |
* @param array $subscriptions List of subscriptions' data belonging to the current user | |
* @return array List of action buttons that can happen with each subscription | |
*/ | |
function remove_renew( $actions, $subscriptions ) { | |
foreach ( $actions as $key => $action ) { | |
if ( array_key_exists( 'renew', $action ) ) { |
NewerOlder