Sign up ×
Magento Stack Exchange is a question and answer site for users of the Magento e-Commerce platform. It's 100% free, no registration required.

I have created a theme and would like to finish it by styling the checkout and payment pages. Which trick can I play to have a »quick-access« to all these pages without the need of »buying« a product and entering all the necessary information? Is there any way to »short-circuit« this process?

Thanks in ahead!

share|improve this question

1 Answer 1

For the checkout process I've always just added an item to the cart as its usually pretty quick to do. You should also be making sure those pages look well with multiple and different types of products in the cart.

You'll also want to test out scenarios where the customer is logged in. Creating an account and saving address information will help in that scenario.

The page that is usually tricky is the checkout success page. It's possible to prevent the session from being cleared and allowing the page to be refreshed:

Modify (temporarily) app/code/core/Mage/Checkout/controllers/OnepageController.php

Locate the successAction method and comment out the following line:

$session->clear();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.