Skip to content

Instantly share code, notes, and snippets.

View theanujsharma's full-sized avatar
:octocat:

Anuj Sharma theanujsharma

:octocat:
View GitHub Profile
@theanujsharma
theanujsharma / functions.php
Created July 18, 2017 04:28 — forked from corsonr/functions.php
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' )) {