Skip to content

Instantly share code, notes, and snippets.

@jonathandavis
Last active December 15, 2015 05:59
Show Gist options
  • Save jonathandavis/5213074 to your computer and use it in GitHub Desktop.
Save jonathandavis/5213074 to your computer and use it in GitHub Desktop.
<?php
add_filter('shopp_themeapi_purchase_itemunitprice')
function shopp_purchase_item_price ($result, $options, $O) {
$item = current($O->purchased);
$amount = $item->unitprice;
return money($amount);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment