An attempt at making "-moz-range-thumb" & "-webkit-slider-thumb" play nice together.
A Pen by David Scott Kirby on CodePen.
add_action('wp', 'prefix_theme_setup', 99); | |
function prefix_theme_setup() | |
{ | |
add_filter( 'woocommerce_is_purchasable', 'prefix_is_purchasable', 20, 2); | |
} | |
function prefix_is_purchasable($purchasable, $product) |
<script> | |
// get markdown content | |
var body_location = 'markdown/README.markdown'; | |
function getText(myUrl){ | |
var result = null; | |
$.ajax( { url: myUrl, | |
type: 'get', | |
dataType: 'html', |
An attempt at making "-moz-range-thumb" & "-webkit-slider-thumb" play nice together.
A Pen by David Scott Kirby on CodePen.