Via the display menu I have edited checkout / cart.php so that it displays four of my custom fields.
The following code has been inserted into the "<div class="hikashop_cart_product_custom_item_fields">" section as PHP
echo '<p><strong>Date:</strong> '.$this->row->date.'<br/>';
echo '<strong>No. of Days:</strong> '.$this->row->noofdays.'<br/>';
echo '<strong>Age Group:</strong> '.$this->row->agegroup.'<br/>';
echo '<strong>Prerequisites:</strong> '.$this->row->prer
equisites.'</p>';
[/code]
This works for all but the 1st item in the cart (see image below).
As you can see the entries for the custom fields are blank, even though they do have data. This happens to whatever product is listed first.
Any ideas on how I can fix this?
Since posting this I have just upgraded to "Business" so there may be a better way to do this.