Hi there,
You helped me out before with a similar problem I was having and for some reason even though I've set this site up in the same way, I can't get the add the cart buttons to display on the page that lists all products. (It displays fine in the individual product page)
Currently getting the error 'Looks like you have entered a product ID () in the shortcode that doesn't exist. Please check your product ID and the shortcode again!'
The code in my template:
<div id="productId">
<p>
<?php
$values = get_post_custom_values('product_id');
echo get_button_code_for_product($values[0]);
?>
</p>
</div>
The shortcode in the page:
[wp_eStore:product_id:1:end]
I might be missing something obvious!