Book Image

Magento 1.8 Development Cookbook

By : Bart Delvaux, Nurul Ferdous
Book Image

Magento 1.8 Development Cookbook

By: Bart Delvaux, Nurul Ferdous

Overview of this book

<p>Magento is an open source e-commerce platform which has all the functionality to function from small to large online stores. Its architecture makes it possible to extend the functionalities with plugins where a lot of them are shared by the community. This is the reason why the platform is liked by developers and retailers.</p> <p>A practical developer guide packed with recipes that cover all the parts of Magento development. The recipes will start with the simple development exercises and get the more advanced as the book progresses. A good reference for every Magento developer!</p> <p>This book starts with the basics. The first thing is to create a test environment. Next, the architecture, tools, files and other basics are described to make you ready for the real work.</p> <p>The real work starts with the simple things like theming and catalog configuration. When you are familiar with this, we will move on to more complex features such as module and database development. When you have survived this, we will move on to the last part of making a shop ready for launch: performance optimization and testing. This book will guide you through all the development phases of Magento, covering the most common pitfalls through its recipes.</p>
Table of Contents (19 chapters)
Magento 1.8 Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Setting up the catalog defaults


The first step is to configure the catalog settings to the preferred values. We will cover all the configuration values that are possible with a standard installation.

Getting ready

Open the frontend in a tab of your browser. In the second tab, open the backend and log in.

How to do it...

In the next steps, we will configure the settings of the catalog (category and product) pages:

  1. Go to the Configuration section in System, and click on the Catalog tab. You will see the following screen:

  2. Open the frontend section and set the following values:

    • List mode: grid (Show products by default in a grid or list)

    • Products per page on Grid allowed values: 12,24,36

    • Products per page on Grid default value: 24

      Note

      While changing the allowed and default value for a grid page, make sure the numbers are divisible by the number of products in a row. Otherwise, the number of products on a page will not fit in the grid.

    • Products per page on List allowed values: 10,20,30,40

    • Products...