Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Created April 7, 2015 13:36
Show Gist options
  • Select an option

  • Save thecodepoetry/1f33ab9f0c86a83f1415 to your computer and use it in GitHub Desktop.

Select an option

Save thecodepoetry/1f33ab9f0c86a83f1415 to your computer and use it in GitHub Desktop.
Add to cart button on shop
//add this code in functions.php
add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
//and add this rule in Theme options > General > CUstom CSS
.project-list-content a.add_to_cart_button:after {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment