문제

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?

도움이 되었습니까?

해결책

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
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top