Forked from ashfame/magento-set-defaults-address.php
Last active
August 29, 2015 14:08
-
-
Save fhferreira/3c7e137dd23792c94a70 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once ("app/Mage.php"); | |
umask(0); | |
Mage::app("default"); | |
$collection = Mage::getModel('customer/customer')->getCollection()->addAttributeToSelect('*'); | |
foreach ($collection as $customer) { | |
$customerObj = Mage::getModel('customer/customer')->load( $customer->getId() ); | |
if ( ! $customerObj->getDefaultBillingAddress() ) { | |
foreach ($customerObj->getAddresses() as $address) { | |
$address->setIsDefaultBilling(true); | |
continue; // we only want to set first address of the customer as default billing address | |
} | |
} | |
if ( ! $customerObj->getDefaultShippingAddress() ) { | |
foreach ($customerObj->getAddresses() as $address) { | |
$address->setIsDefaultShipping(true); | |
continue; // we only want to set first address of the customer as default shipping address | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment