1

We have added an in-store pick up shipping method to our magento stores. We would like to display travel instructions to the store on the thank you page.

Any ideas on how I can go about displaying this information?

Teja Bhagavan Kollepara
  • 3,816
  • 5
  • 32
  • 69
Jeffrey L. Roberts
  • 1,317
  • 2
  • 21
  • 31

1 Answers1

3

At your checkout/success.phtml you can do something like this:

$order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
if ($order->getShippingMethod() == 'your_shipping_method_code') {
    // display travel instructions
}
Tim Bezhashvyly
  • 11,575
  • 6
  • 43
  • 73