Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Tweaks › How to Remove the Quanity Field › Reply To: How to Remove the Quanity Field
I have modified the output to have the quantity visible as it is less anxious for my client, but it is impossible to make change.
$output .= ‘
<tr>
<th style=”text-align: left”>’.ESTORE_ITEM_NAME.'</th><th style=”text-align: left”>’.ESTORE_QUANTITY.'</th><th style=”text-align: left”>’.ESTORE_PRICE.'</th><th></th>
</tr>’;
foreach ($_SESSION as $item)
{
$output .= “
<tr><td style=’overflow: hidden;’>“.$item.”</td>
<td style=’text-align: left’>”.$item.”</td>
<td style=’text-align: left’>”.print_digi_cart_payment_currency(($item * $item), $currency_symbol, $decimal).”</td>
<td style=’text-align: left’><form method=”post” action=””>
<input type=”hidden” name=”product” value=””.htmlspecialchars($item).”” />
<input type=’hidden’ name=’eStore_delcart’ value=’1′ />
<input type=’image’ src='”.WP_ESTORE_URL.”/images/Shoppingcart_delete.gif’ class=’eStore_remove_item_button’ value=’Remove’ title='”.ESTORE_REMOVE_ITEM.”‘ /></form></td></tr>
“;
This output and the original could be in a checkbox in the settings ?