On here when I am on a product page it says "quantity in cart: 1" for example above the add box and button.
However when you look at a category listing by row (setting "1" under columns per row) it does not show the above guidance.
Looking at product info display I can see the entry to get that display on about line 160 on my particular php file.
$display_qty = ($flag_show_product_info_in_cart_qty == 1 && $_SESSION['cart']->in_cart($_GET['products_id'])) ? '<p>' . PRODUCTS_ORDER_QTY_TEXT_IN_CART . $_SESSION['cart']->get_quantity($_GET['products_id']) . '</p>' : '';
However, I am having a brain freeze on where to insert this statement to get it to show on the rows setup or columns for that matter even set on "0" as recommended it doesn't display.
So when you look at a grid on a laptop you have say 3-5 products across and tons of space in each box or row where this can be inserted but where?


Reply With Quote

