Tips and Tricks HQ Support Portal › Forums › Simple PayPal Shopping Cart › Simple shopping Cart Usage › coding question for simple cart wp plugin with custom field template plugin › Reply To: coding question for simple cart wp plugin with custom field template plugin
July 25, 2010 at 3:59 am
#15799
Member
I used the same principle to utilize the wordpress custom meta fields to get the same result. So I have a two fields named productname and productprice that I can enter values into and it works great.
<?php $product_id = get_post_meta($post->ID, ‘productname’, true);
$product_price = get_post_meta($post->ID, ‘productprice’, true);
echo echo print_wp_cart_button_for_product($product_id, $product_price); ?>
My question now is how do I get variations, like for tshirt size?