Guest User

Untitled

a guest
Jun 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Magento 1.9.1
  2. Porto theme
  3.  
  4. app/code/core/Mage/Checkout/Block/Onepage/Billing.php
  5.  
  6. public function isUseBillingAddressForShipping()
  7. {
  8. if (($this->getQuote()->getIsVirtual())
  9. || !$this->getQuote()->getShippingAddress()->getSameAsBilling()) {
  10. return false;
  11. }
  12. return true;
  13. }
Add Comment
Please, Sign In to add comment