Skip to content

Instantly share code, notes, and snippets.

View kloon's full-sized avatar

Gerhard Potgieter kloon

View GitHub Profile
@kloon
kloon / gist:4162957
Created November 28, 2012 18:08
WooCommerce remove from: price
// Change from text on price
function custom_from_price_html( $price, $product ) {
if ( strpos( $price, 'From: ' ) <> false )
return str_replace( 'From: ', '', $price ) . __( ' and up', 'woocommerce');
else return $price;
}
add_filter( 'woocommerce_get_price_html', 'custom_from_price_html', 10, 2 );
@kloon
kloon / gist:4218596
Created December 5, 2012 19:11
WooCommerce redirect to checkout page after add to cart
// Add to cart checkout redirect
function add_to_cart_checkout_redirect() {
wp_safe_redirect( get_permalink( get_option( 'woocommerce_checkout_page_id' ) ) );
die();
}
add_action( 'woocommerce_add_to_cart', 'add_to_cart_checkout_redirect', 11 );
@kloon
kloon / gist:4218605
Created December 5, 2012 19:13
WooCommerce Product Count Shortcode
// [product_count] shortcode
function product_count_shortcode( ) {
$count_posts = wp_count_posts( 'product' );
return $count_posts->publish;
}
add_shortcode( 'product_count', 'product_count_shortcode' );
@kloon
kloon / gist:4218697
Created December 5, 2012 19:23
WooCommerce move sort dropdown to top of page
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 11 );
remove_action( 'woocommerce_pagination', 'woocommerce_catalog_ordering', 20 );
@kloon
kloon / gist:4228021
Created December 6, 2012 20:25
WooCommerce variations custom field
//Display Fields
add_action( 'woocommerce_product_after_variable_attributes', 'variable_fields', 10, 2 );
//JS to add fields for new variations
add_action( 'woocommerce_product_after_variable_attributes_js', 'variable_fields_js' );
//Save variation fields
add_action( 'woocommerce_process_product_meta_variable', 'variable_fields_process', 10, 1 );
function variable_fields( $loop, $variation_data ) {
?>
<tr>
@kloon
kloon / gist:4239771
Created December 8, 2012 10:48
WooCommerce Name Your Price, show minimum price on archive pages
add_filter( 'woocommerce_get_price_html', 'woocommerce_nyp_min_price', 11, 2 );
function woocommerce_nyp_min_price( $price, $product ) {
if ( !$product->nyp )
return $price;
if( is_shop() || is_product_category() || is_product_tag() ) {
$price = woocommerce_price( $product->minimum );
}
return $price;
@kloon
kloon / gist:4326708
Created December 18, 2012 09:46
WooCommerce Remove Quantity from Product Page
add_filter( 'woocommerce_is_sold_individually', 'wc_remove_all_quantity_fields', 10, 2 );
function wc_remove_all_quantity_fields( $return, $product ) {
if ( is_product() )
return true;
else return $return;
}
@kloon
kloon / gist:4331540
Created December 18, 2012 20:14
WooCommerce Change Bacs sort code text
add_filter( 'woocommerce_bacs_fields', 'woocommerce_bacs_custom_sort_code_text', 10, 1 );
function woocommerce_bacs_custom_sort_code_text( $fields ) {
$fields['sort_code'] = 'BSB';
return $fields;
}
@kloon
kloon / gist:4334989
Created December 19, 2012 07:03
WooCommerce remove Page from title of archive pages
function woocommerce_content() {
if ( is_singular( 'product' ) ) {
while ( have_posts() ) : the_post();
woocommerce_get_template_part( 'content', 'single-product' );
endwhile;
@kloon
kloon / gist:4386516
Created December 27, 2012 08:16
WooCommerce theme wrapper
add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10);
add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10);
function my_theme_wrapper_start() {
echo '<div class="fixed">';
echo '<div class="content-home-right">';
}
function my_theme_wrapper_end() {
echo '</div>';