Skip to content

Instantly share code, notes, and snippets.

@MindyPostoff
MindyPostoff / gist:7fdb43fce328049de1b9
Created January 30, 2015 22:30
Using Bookings to Sell Limited Products Daily
/** 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;
}
@MindyPostoff
MindyPostoff / disable-paypal-woocommerce
Last active January 16, 2017 12:07
Disable PayPal in WooCommerce Checkout for Certain Products
/*
* Disable PayPal payment method in the checkout if certain
* products are present in the cart.
*
* Add this to your theme's functions.php file
*/
add_filter( 'woocommerce_available_payment_gateways', 'filter_gateways', 1);
function filter_gateways( $gateways ){
global $woocommerce;
@MindyPostoff
MindyPostoff / recurring-fees.php
Created December 31, 2015 19:44
Recurring Fees
<?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; ?>
@MindyPostoff
MindyPostoff / cart-surcharge.php
Created December 31, 2015 19:39
Add Surcharge to Cart
/**
* 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' ) ) {
@MindyPostoff
MindyPostoff / add-to-cart.php
Created April 6, 2015 14:42
Override loop template and show quantities next to add to cart buttons
<?php
/**
* Loop Add to Cart
*/
global $product;
if( $product->get_price() === '' && $product->product_type != 'external' ) return;
?>
@MindyPostoff
MindyPostoff / variation-thumbnail.php
Last active September 27, 2015 13:44
Display product featured image in cart instead of variation thumbnail
// 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 );
@MindyPostoff
MindyPostoff / WooCommerceAPI-attributes.php
Created August 12, 2015 18:31
WooCommerce API Attributes
'attributes' => array(
array(
'name' => 'Brand',
'slug' => 'pa_brand',
'options' => array(
'Kravet Basics'
),
'visible' => true
)
)
@MindyPostoff
MindyPostoff / gist:dd0662dccd8068035757
Last active August 29, 2015 14:10
Mini-Cart in PixelPress
<?php if ( is_woocommerce_activated() ) { ?>
<ul class="mini-cart">
<li>
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>" class="cart-parent">
<span>
<?php
echo $woocommerce->cart->get_cart_total();;
echo sprintf(_n('<mark>%d</mark>', '<mark>%d</mark>', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);
?>
</span>
@MindyPostoff
MindyPostoff / gist:9c7087e170f9cf327f26
Last active August 29, 2015 14:09
Display "Low Stock" Message on WooCommerce Product Page Instead of "Only # Left in Stock"
/* Change the 'Only # left in stock' message on the WooCommerce product page to
* simply show 'Low Stock'.
* Add to your theme's functions.php file
*/
function custom_stock_totals($availability_html, $availability_text, $product) {
if (substr($availability_text,0, 4)=="Only") {
$availability_text = "Low Stock";
}
$availability_html = '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability_text ) . '</p>';
return $availability_html;