Skip to content

Instantly share code, notes, and snippets.

View BrandonKroes's full-sized avatar

Brandon Kroes BrandonKroes

View GitHub Profile
@BrandonKroes
BrandonKroes / functions.php
Created August 3, 2017 15:11 — 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' )) {