I want to add the price of the menu at the right sidebar inside the cart module (My Order)
example:
1 x Espresso
+Sugar ------ $0.50
+Extra Milk ------ $0.50
Subtotal ------ $2.00
Total ------ $2.00
This means that the price of espresso is $1.00 but doesnt shown next to Menu item (Espresso).
How i can make it like that ??
1 x Espresso ----- $1.00
+Sugar ------ $0.50
+Extra Milk ------ $0.50
Subtotal ------ $2.00
Total ------ $2.00
Notice the price ($1.00) next to item title..
I tried to add this inside the cart_module.php extension file but no luck !!
<?php echo $price; ?>
or
<?php $menu_data['menu_price']; ?>
I really cant understand why it doesnt display the price of the menu item !!! :(
Can u help me please ??
Thanks in advance !!