Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sarachisholm/998e6255b4694cb9162428e7d607b782 to your computer and use it in GitHub Desktop.
Save sarachisholm/998e6255b4694cb9162428e7d607b782 to your computer and use it in GitHub Desktop.
client.fetchProduct('your-product-id').then(function(product) {
var html =
"<img class='product__image' src='" + product.selectedVariantImage.src + "' >" +
"<h2 class='product__title'>" + product.title + "</h2>" +
"<a class='product__buy' href='" +
product.selectedVariant.checkoutUrl(1) +
"'>Buy Now!</a>";
$('#product-1').html(html);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment