Created
March 14, 2016 10:05
-
-
Save mikejolley/d1e0a267afeedd9232b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_product_add_to_cart_url', 'custom_woocommerce_product_add_to_cart_url', 10, 2 ); | |
function custom_woocommerce_product_add_to_cart_url( $url, $product ) { | |
if ( $product->is_type( 'simple' ) ) { | |
$url = get_permalink( $product->id ); | |
} | |
return $url; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment