Simon is a TemplateMonster sales operator who helps small businesses and startups by day and passionately rocking on the stage with his bass guitar by night. Simon is a truly creative spirit and idea generator who can draw almost everything he imagines.
Although we are talking about online stores in this course, it could happen that you do not need a store. What if you just want to show your products but without the facility to purchase them? PrestaShop has a key to this door as well and this key is called “Catalog Mode”.
Some store owners plan to create a showcase site only, enabling them to display the products but not sell them online. That way the customers can check what’s in stock, then contact the shop owner or visit the local brick and mortar store to purchase something.
PrestaShop has a Catalog tool to offer you, which is one of the best solutions for such a situation.
Catalog Mode in PrestaShop disables standard shop features like the shopping cart, add to cart button, checkout, ability to place an order, prices, etc. However other features will still be available. You will still have a product list with filters and search, product pages with product specification, attributes, categories, etc.
Now, once you know what PrestaShop Catalog Mode is, let’s see how you can turn it on. Just follow the steps below:
As easy as a pie, but we have something more to show you, some extra steps that will help you improve your catalog.
One of the features that is being disabled within the store is the price visability. If you need prices to be shown, you should follow the instructions below.
You will need to find three files on your hosting server, download them to your local PC or laptop, edit them with code editors like Dreamweaver (or a free alternative like Notepad++, save them, and upload them back to the same folder. These files are:
Usually you can find these files in the themes\your_theme folder. Where "your_theme" is the folder with your theme name.
Find:
{if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))}
And change to:
{if ( ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))}
Find:
{if $product->show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE }
And change to:
{if $product->show_price && !isset($restricted_country_mode) }
Find:
{if isset($product->show_price) && $product->show_price && !isset($restricted_country_mode) && !$PS_CATALOG_MODE}
And change to:
{if isset($product->show_price) && $product->show_price && !isset($restricted_country_mode)}
Save all these files and upload them back to the same folder to replace the original files. Your catalog shows the prices now!
One more thing you may find useful for your catalog is if your visitors are able to ask for a quote straight from the product page. There is a way.
Here are some plugins that add the quote request to your store (BTW it can be used not only in the catalog mode, but also with the full shop as well):
That’s how you create the catalog with PrestaShop. Nothing really difficult. Even the coding part looks pretty easy and straightforward. So go for it. Got any questions or an advice to share? Post it in the comments below. Also, check out the great collection of PrestsShop themes on templatemonster.com.