Skip to content

Instantly share code, notes, and snippets.

View buiquangduc's full-sized avatar
🎯
Focusing

Bui Quang Duc buiquangduc

🎯
Focusing
View GitHub Profile
@dziudek
dziudek / new_gist_file
Created August 13, 2013 10:35
Change ordering of the sale price and original price in WooCommerce
/**
*
* Code used to change the price order in WooCommerce
*
**/
function PREFIX_woocommerce_price_html( $price, $product ){
return preg_replace('@(<del>.*?</del>).*?(<ins>.*?</ins>)@misx', '$2 $1', $price);
}