Skip to content

Instantly share code, notes, and snippets.

View arobbins's full-sized avatar
🦾
Building ShopWP

Andrew Robbins arobbins

🦾
Building ShopWP
View GitHub Profile
@arobbins
arobbins / buybutton-archive.php
Last active January 29, 2018 03:31
Adding a buy button under each archive product
<?php
function wps_products_show_add_to_cart_callback() {
return true;
}
add_filter( 'wps_products_show_add_to_cart', 'wps_products_show_add_to_cart_callback' );
@arobbins
arobbins / wps-shortcode-wpsproducts.js
Last active April 9, 2018 18:46
WP Shopify - Example - Shortcode - [wps_products]
// Show products from collections "Featured" and "Sale". Limit the amount of products to 10
[wps_products collections="Featured, Sale" limit="10"]