Skip to content

Instantly share code, notes, and snippets.

View theanujsharma's full-sized avatar
:octocat:

Anuj Sharma theanujsharma

:octocat:
View GitHub Profile
@corsonr
corsonr / functions.php
Created September 28, 2016 08:33
Display WooCommerce product variations dropdown select on the shop page
<?php
// Display variations dropdowns on shop page for variable products
add_filter( 'woocommerce_loop_add_to_cart_link', 'woo_display_variation_dropdown_on_shop_page' );
function woo_display_variation_dropdown_on_shop_page() {
global $product;
if( $product->is_type( 'variable' )) {