Hi, I am trying to get the SCM to pass a variable to paypal. So when the user add’s to cart it can display further information about the product. At the moment it only shows the entries {title} in the cart, id like it to show the entry date also. So in the attached image, under the “Cakes” Id like it show the entry date as well.
My SCM code:
{exp:channel:entries channel="london_class" dynamic="no" show_future_entries="yes"}
<div id="fancy-{entry_id}" class="fancy-inner">
{exp:simple_commerce:purchase entry_id="{entry_id}" currency="GBP" success="site/success" cancel="site/fail" show_disabled="no"}
<h1>{title}</h1>
Date & Time: <span>{entry_date format=" %j%S %F %Y"} {class_time} {if class_duration}({class_duration}){/if}</span>
Class Price: <span>£{item_regular_price}</span> {if class_level}<span>| Level: {class_level}</span>{/if}
Status: <span>{class_status}</span>
{if logged_in && class_status =="SPACES AVAILABLE"}
<br>
<a href="http://{path=%22>{site_url}images/btn-book.png</a>">{site_url}images/btn-book.png</a>{/if}
{/exp:simple_commerce:purchase}
</div>
{/exp:channel:entries}
I hope this makes sense, thanks in advance.