How to merge two/more customers account in magento












3















Is it possible to merge two or more (copying customers orders and other stuff ) customer accounts?



is it possible in magento?










share|improve this question

























  • In the Community Edition there is not such a functionality.

    – Andre Aus B
    Jun 28 '13 at 13:10











  • Thanks Andre Aus B. if we have to create this functionality programmatically, what can we do? i mean copying orders of one user to another ? or any idea about this. how can we copy orders of one user to other? Please help me in this regard. i would really be very thankful to you.

    – Guru
    Jun 28 '13 at 13:51
















3















Is it possible to merge two or more (copying customers orders and other stuff ) customer accounts?



is it possible in magento?










share|improve this question

























  • In the Community Edition there is not such a functionality.

    – Andre Aus B
    Jun 28 '13 at 13:10











  • Thanks Andre Aus B. if we have to create this functionality programmatically, what can we do? i mean copying orders of one user to another ? or any idea about this. how can we copy orders of one user to other? Please help me in this regard. i would really be very thankful to you.

    – Guru
    Jun 28 '13 at 13:51














3












3








3








Is it possible to merge two or more (copying customers orders and other stuff ) customer accounts?



is it possible in magento?










share|improve this question
















Is it possible to merge two or more (copying customers orders and other stuff ) customer accounts?



is it possible in magento?







extensions






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 25 mins ago









Teja Bhagavan Kollepara

2,95841847




2,95841847










asked Jun 27 '13 at 21:38









GuruGuru

148321




148321













  • In the Community Edition there is not such a functionality.

    – Andre Aus B
    Jun 28 '13 at 13:10











  • Thanks Andre Aus B. if we have to create this functionality programmatically, what can we do? i mean copying orders of one user to another ? or any idea about this. how can we copy orders of one user to other? Please help me in this regard. i would really be very thankful to you.

    – Guru
    Jun 28 '13 at 13:51



















  • In the Community Edition there is not such a functionality.

    – Andre Aus B
    Jun 28 '13 at 13:10











  • Thanks Andre Aus B. if we have to create this functionality programmatically, what can we do? i mean copying orders of one user to another ? or any idea about this. how can we copy orders of one user to other? Please help me in this regard. i would really be very thankful to you.

    – Guru
    Jun 28 '13 at 13:51

















In the Community Edition there is not such a functionality.

– Andre Aus B
Jun 28 '13 at 13:10





In the Community Edition there is not such a functionality.

– Andre Aus B
Jun 28 '13 at 13:10













Thanks Andre Aus B. if we have to create this functionality programmatically, what can we do? i mean copying orders of one user to another ? or any idea about this. how can we copy orders of one user to other? Please help me in this regard. i would really be very thankful to you.

– Guru
Jun 28 '13 at 13:51





Thanks Andre Aus B. if we have to create this functionality programmatically, what can we do? i mean copying orders of one user to another ? or any idea about this. how can we copy orders of one user to other? Please help me in this regard. i would really be very thankful to you.

– Guru
Jun 28 '13 at 13:51










2 Answers
2






active

oldest

votes


















1














There is no such backend functionality, but it must be possible by editing the database directly. I have never done this, so don't use this in a productive system, but I would propose you do:




  • choose one of the customers that you wnt to keep, and get its entity_id from the customer table

  • get the entity_id of the second customer, and replace it with the first entity_id in the address-tables, order-tables, wishlist- and quote-tables and (maybe) some more

  • delete the second customer


I am typing this free, so I don't know the actual table names atm. Do you need a list, or can you find them yourself?



Cheers
Simon






share|improve this answer
























  • Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

    – Guru
    Jun 28 '13 at 19:24



















2














    $keepid = $keepcustomer->getId();
$keepemail = $keepcustomer->getEmail();
$keepegroup = $keepcustomer->getGroupid();

foreach($mergeids as $id) {

$customer = Mage::getModel('customer/customer')->load($id);

$email = $customer->getEmail();

$orderCollection = Mage::getModel('sales/order')->getCollection()
->addFieldToFilter('customer_email',$email);


foreach($orderCollection as $order) {

$order->setCustomer_id($keepid);
$order->setCustomer_email($keepemail);
$order->setCustomer_group_id($keepegroup);
$order->save();
}

// $wishList = Mage::getSingleton('wishlist/wishlist')->loadByCustomer($customer);
$wcollection = Mage::getSingleton('wishlist/wishlist')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($wcollection)>0 ) {
foreach($wcollection as $wish) {
$wish->setCustomer_id($keepid);
$wish->save();
}
}

$bcollection = Mage::getSingleton('sales/billing_agreement')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($bcollection)>0 ) {
foreach($bcollection as $billing) {
$billing->setCustomer_id($keepid);
$billing->save();
}
}








$ncollection = Mage::getModel('newsletter/queue')->getCollection()
->addFieldToFilter('newsletter_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setNewsletter_sender_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/subscriber')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setCustomer_id($keepid);
$n->setSubscriber_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/template')->getCollection()
->addFieldToFilter('template_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setTemplate_sender_email($keepemail);
$n->save();
}
}


$dcollection = Mage::getModel('downloadable/link_purchased')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}



$dcollection = Mage::getModel('sales/recurring_profile')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}


$customer->delete();

}





share|improve this answer
























  • So do you suggest running this as a shell script?

    – sparecycle
    Jun 20 '14 at 13:11











  • Where is $mergeids defined?

    – snh_nl
    Oct 10 '15 at 11:13











  • merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

    – Guru
    Jan 6 '16 at 13:25











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f5228%2fhow-to-merge-two-more-customers-account-in-magento%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














There is no such backend functionality, but it must be possible by editing the database directly. I have never done this, so don't use this in a productive system, but I would propose you do:




  • choose one of the customers that you wnt to keep, and get its entity_id from the customer table

  • get the entity_id of the second customer, and replace it with the first entity_id in the address-tables, order-tables, wishlist- and quote-tables and (maybe) some more

  • delete the second customer


I am typing this free, so I don't know the actual table names atm. Do you need a list, or can you find them yourself?



Cheers
Simon






share|improve this answer
























  • Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

    – Guru
    Jun 28 '13 at 19:24
















1














There is no such backend functionality, but it must be possible by editing the database directly. I have never done this, so don't use this in a productive system, but I would propose you do:




  • choose one of the customers that you wnt to keep, and get its entity_id from the customer table

  • get the entity_id of the second customer, and replace it with the first entity_id in the address-tables, order-tables, wishlist- and quote-tables and (maybe) some more

  • delete the second customer


I am typing this free, so I don't know the actual table names atm. Do you need a list, or can you find them yourself?



Cheers
Simon






share|improve this answer
























  • Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

    – Guru
    Jun 28 '13 at 19:24














1












1








1







There is no such backend functionality, but it must be possible by editing the database directly. I have never done this, so don't use this in a productive system, but I would propose you do:




  • choose one of the customers that you wnt to keep, and get its entity_id from the customer table

  • get the entity_id of the second customer, and replace it with the first entity_id in the address-tables, order-tables, wishlist- and quote-tables and (maybe) some more

  • delete the second customer


I am typing this free, so I don't know the actual table names atm. Do you need a list, or can you find them yourself?



Cheers
Simon






share|improve this answer













There is no such backend functionality, but it must be possible by editing the database directly. I have never done this, so don't use this in a productive system, but I would propose you do:




  • choose one of the customers that you wnt to keep, and get its entity_id from the customer table

  • get the entity_id of the second customer, and replace it with the first entity_id in the address-tables, order-tables, wishlist- and quote-tables and (maybe) some more

  • delete the second customer


I am typing this free, so I don't know the actual table names atm. Do you need a list, or can you find them yourself?



Cheers
Simon







share|improve this answer












share|improve this answer



share|improve this answer










answered Jun 28 '13 at 18:01









simonthesorcerersimonthesorcerer

3,50221126




3,50221126













  • Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

    – Guru
    Jun 28 '13 at 19:24



















  • Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

    – Guru
    Jun 28 '13 at 19:24

















Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

– Guru
Jun 28 '13 at 19:24





Thank you very much :) can you find me those tables? that would really be great. thanks a lot :)

– Guru
Jun 28 '13 at 19:24













2














    $keepid = $keepcustomer->getId();
$keepemail = $keepcustomer->getEmail();
$keepegroup = $keepcustomer->getGroupid();

foreach($mergeids as $id) {

$customer = Mage::getModel('customer/customer')->load($id);

$email = $customer->getEmail();

$orderCollection = Mage::getModel('sales/order')->getCollection()
->addFieldToFilter('customer_email',$email);


foreach($orderCollection as $order) {

$order->setCustomer_id($keepid);
$order->setCustomer_email($keepemail);
$order->setCustomer_group_id($keepegroup);
$order->save();
}

// $wishList = Mage::getSingleton('wishlist/wishlist')->loadByCustomer($customer);
$wcollection = Mage::getSingleton('wishlist/wishlist')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($wcollection)>0 ) {
foreach($wcollection as $wish) {
$wish->setCustomer_id($keepid);
$wish->save();
}
}

$bcollection = Mage::getSingleton('sales/billing_agreement')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($bcollection)>0 ) {
foreach($bcollection as $billing) {
$billing->setCustomer_id($keepid);
$billing->save();
}
}








$ncollection = Mage::getModel('newsletter/queue')->getCollection()
->addFieldToFilter('newsletter_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setNewsletter_sender_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/subscriber')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setCustomer_id($keepid);
$n->setSubscriber_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/template')->getCollection()
->addFieldToFilter('template_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setTemplate_sender_email($keepemail);
$n->save();
}
}


$dcollection = Mage::getModel('downloadable/link_purchased')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}



$dcollection = Mage::getModel('sales/recurring_profile')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}


$customer->delete();

}





share|improve this answer
























  • So do you suggest running this as a shell script?

    – sparecycle
    Jun 20 '14 at 13:11











  • Where is $mergeids defined?

    – snh_nl
    Oct 10 '15 at 11:13











  • merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

    – Guru
    Jan 6 '16 at 13:25
















2














    $keepid = $keepcustomer->getId();
$keepemail = $keepcustomer->getEmail();
$keepegroup = $keepcustomer->getGroupid();

foreach($mergeids as $id) {

$customer = Mage::getModel('customer/customer')->load($id);

$email = $customer->getEmail();

$orderCollection = Mage::getModel('sales/order')->getCollection()
->addFieldToFilter('customer_email',$email);


foreach($orderCollection as $order) {

$order->setCustomer_id($keepid);
$order->setCustomer_email($keepemail);
$order->setCustomer_group_id($keepegroup);
$order->save();
}

// $wishList = Mage::getSingleton('wishlist/wishlist')->loadByCustomer($customer);
$wcollection = Mage::getSingleton('wishlist/wishlist')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($wcollection)>0 ) {
foreach($wcollection as $wish) {
$wish->setCustomer_id($keepid);
$wish->save();
}
}

$bcollection = Mage::getSingleton('sales/billing_agreement')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($bcollection)>0 ) {
foreach($bcollection as $billing) {
$billing->setCustomer_id($keepid);
$billing->save();
}
}








$ncollection = Mage::getModel('newsletter/queue')->getCollection()
->addFieldToFilter('newsletter_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setNewsletter_sender_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/subscriber')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setCustomer_id($keepid);
$n->setSubscriber_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/template')->getCollection()
->addFieldToFilter('template_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setTemplate_sender_email($keepemail);
$n->save();
}
}


$dcollection = Mage::getModel('downloadable/link_purchased')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}



$dcollection = Mage::getModel('sales/recurring_profile')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}


$customer->delete();

}





share|improve this answer
























  • So do you suggest running this as a shell script?

    – sparecycle
    Jun 20 '14 at 13:11











  • Where is $mergeids defined?

    – snh_nl
    Oct 10 '15 at 11:13











  • merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

    – Guru
    Jan 6 '16 at 13:25














2












2








2







    $keepid = $keepcustomer->getId();
$keepemail = $keepcustomer->getEmail();
$keepegroup = $keepcustomer->getGroupid();

foreach($mergeids as $id) {

$customer = Mage::getModel('customer/customer')->load($id);

$email = $customer->getEmail();

$orderCollection = Mage::getModel('sales/order')->getCollection()
->addFieldToFilter('customer_email',$email);


foreach($orderCollection as $order) {

$order->setCustomer_id($keepid);
$order->setCustomer_email($keepemail);
$order->setCustomer_group_id($keepegroup);
$order->save();
}

// $wishList = Mage::getSingleton('wishlist/wishlist')->loadByCustomer($customer);
$wcollection = Mage::getSingleton('wishlist/wishlist')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($wcollection)>0 ) {
foreach($wcollection as $wish) {
$wish->setCustomer_id($keepid);
$wish->save();
}
}

$bcollection = Mage::getSingleton('sales/billing_agreement')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($bcollection)>0 ) {
foreach($bcollection as $billing) {
$billing->setCustomer_id($keepid);
$billing->save();
}
}








$ncollection = Mage::getModel('newsletter/queue')->getCollection()
->addFieldToFilter('newsletter_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setNewsletter_sender_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/subscriber')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setCustomer_id($keepid);
$n->setSubscriber_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/template')->getCollection()
->addFieldToFilter('template_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setTemplate_sender_email($keepemail);
$n->save();
}
}


$dcollection = Mage::getModel('downloadable/link_purchased')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}



$dcollection = Mage::getModel('sales/recurring_profile')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}


$customer->delete();

}





share|improve this answer













    $keepid = $keepcustomer->getId();
$keepemail = $keepcustomer->getEmail();
$keepegroup = $keepcustomer->getGroupid();

foreach($mergeids as $id) {

$customer = Mage::getModel('customer/customer')->load($id);

$email = $customer->getEmail();

$orderCollection = Mage::getModel('sales/order')->getCollection()
->addFieldToFilter('customer_email',$email);


foreach($orderCollection as $order) {

$order->setCustomer_id($keepid);
$order->setCustomer_email($keepemail);
$order->setCustomer_group_id($keepegroup);
$order->save();
}

// $wishList = Mage::getSingleton('wishlist/wishlist')->loadByCustomer($customer);
$wcollection = Mage::getSingleton('wishlist/wishlist')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($wcollection)>0 ) {
foreach($wcollection as $wish) {
$wish->setCustomer_id($keepid);
$wish->save();
}
}

$bcollection = Mage::getSingleton('sales/billing_agreement')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($bcollection)>0 ) {
foreach($bcollection as $billing) {
$billing->setCustomer_id($keepid);
$billing->save();
}
}








$ncollection = Mage::getModel('newsletter/queue')->getCollection()
->addFieldToFilter('newsletter_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setNewsletter_sender_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/subscriber')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setCustomer_id($keepid);
$n->setSubscriber_email($keepemail);
$n->save();
}
}


$ncollection = Mage::getModel('newsletter/template')->getCollection()
->addFieldToFilter('template_sender_email', array('eq'=>$email));

if ( count($ncollection)>0 ) {
foreach($ncollection as $n) {
$n->setTemplate_sender_email($keepemail);
$n->save();
}
}


$dcollection = Mage::getModel('downloadable/link_purchased')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}



$dcollection = Mage::getModel('sales/recurring_profile')->getCollection()
->addFieldToFilter('customer_id', array('eq'=>$id));

if ( count($dcollection)>0 ) {
foreach($dcollection as $d) {
$d->setCustomer_id($keepid);
$d->save();
}
}


$customer->delete();

}






share|improve this answer












share|improve this answer



share|improve this answer










answered Jun 30 '13 at 21:21









GuruGuru

148321




148321













  • So do you suggest running this as a shell script?

    – sparecycle
    Jun 20 '14 at 13:11











  • Where is $mergeids defined?

    – snh_nl
    Oct 10 '15 at 11:13











  • merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

    – Guru
    Jan 6 '16 at 13:25



















  • So do you suggest running this as a shell script?

    – sparecycle
    Jun 20 '14 at 13:11











  • Where is $mergeids defined?

    – snh_nl
    Oct 10 '15 at 11:13











  • merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

    – Guru
    Jan 6 '16 at 13:25

















So do you suggest running this as a shell script?

– sparecycle
Jun 20 '14 at 13:11





So do you suggest running this as a shell script?

– sparecycle
Jun 20 '14 at 13:11













Where is $mergeids defined?

– snh_nl
Oct 10 '15 at 11:13





Where is $mergeids defined?

– snh_nl
Oct 10 '15 at 11:13













merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

– Guru
Jan 6 '16 at 13:25





merge ids can be obtained per some criteria, suppose customers who have same first names and last names per say

– Guru
Jan 6 '16 at 13:25


















draft saved

draft discarded




















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f5228%2fhow-to-merge-two-more-customers-account-in-magento%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

What other Star Trek series did the main TNG cast show up in?

Berlina muro

Berlina aerponto