Skip to content

Instantly share code, notes, and snippets.

View imvarunkmr's full-sized avatar

Varun Kumar imvarunkmr

View GitHub Profile
@imvarunkmr
imvarunkmr / gist:82d2904ee40cfa554340
Last active August 29, 2015 14:21
Woocommerce: Get product categories
<?php
$product_categories = get_terms('product_cat');
foreach ($product_categories as $product_cat) {
echo $product_cat->name;
}
?>
@imvarunkmr
imvarunkmr / gist:500a4600a9b773da0abe
Created May 11, 2015 14:03
Woocommerce: Change text of order button
// Change Order Button Text on checkout page
add_filter( 'woocommerce_order_button_text', create_function( '', 'return "Create Request";' ) );