Skip to content

Instantly share code, notes, and snippets.

@manospsyx
manospsyx / woocommerce-composites-old-style-price.php
Last active July 10, 2017 08:00
Use this snippet to prevent Composite Products from displaying composite prices in range format.
<?php
/**
* Plugin Name: WooCommerce Composite Products - Prevent Range-Format Prices
* Plugin URI: http://woocommerce.com/products/composite-products/
* Description: Use this snippet to prevent Composite Products from displaying composite prices in range format.
* Version: 1.0
* Author: SomewhereWarm
* Author URI: http://somewherewarm.gr/
* Developer: Manos Psychogyiopoulos
*
@kloon
kloon / functions.php
Last active October 16, 2022 16:46
WooCommerce 2.1 variation price, revert to 2.0 format
/**
* Use WC 2.0 variable price format, now include sale price strikeout
*
* @param string $price
* @param object $product
* @return string
*/
function wc_wc20_variation_price_format( $price, $product ) {
// Main Price
$prices = array( $product->get_variation_price( 'min', true ), $product->get_variation_price( 'max', true ) );