Loving the plugin - wonderfully simple.....so I thought I'd make it more difficult.
Basically, I want to drop [wp_cart:PRODUCT-NAME:price:PRODUCT-PRICE:end] in as a value in a custom field and have the Add to Cart button show up in a sidebar where the other related custom fields are displayed.
I figured out how to alter line 1451 to move the button to the excerpt
'add_filter('the_content', 'print_wp_cart_button_new',11);'
to
'add_filter('the_excerpt', 'print_wp_cart_button_new',11);'
but I'd like to use the excerpt for something else...and excerpt.
Anyway to get the button in the sidebar?