Hi,
I need to create a page that lists all products so that the buyers can just add products and go to checkout. The attached image shows what I am looking for. Kindly suggest me if I need an extension to achieve this.
Many thanks in advance.
Regards,
Nahin
Solved! Go to Solution.
You can make the change by editing the following file:
app/design/frontend/theme/default/template/catalog/product/list.phtml.
The list.phtml file contains the code which manages the display for both list & grid view.
You should see something along these lines, separating the two views:
<?php // List mode ?> ... <?php // Grid Mode ?>
Simply make the design changes using HTML and you'll be all sorted.
You can make the change by editing the following file:
app/design/frontend/theme/default/template/catalog/product/list.phtml.
The list.phtml file contains the code which manages the display for both list & grid view.
You should see something along these lines, separating the two views:
<?php // List mode ?> ... <?php // Grid Mode ?>
Simply make the design changes using HTML and you'll be all sorted.