without registration with existing email

03.10.2011 00:06
#1
jciconsult
Joomshopping forum user no avatar
Name: Paul Jacobson
03.05.2011
Сообщения: 16
Quote
without registration with existing email

The store will not let me complete a purchase using the email of an existing user without that user logging in. Can that be avoided?

 
03.10.2011 08:07
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Сообщения: 25922
Quote
Aw: without registration with existing email

No.

 
03.10.2011 14:18
#3
jciconsult
Joomshopping forum user no avatar
Name: Paul Jacobson
03.05.2011
Сообщения: 16
Quote
Aw: without registration with existing email

That is actually a major restriction. There are many of us who use products such as CB which conflict with your registration process and so wish to use your store without any registration. You should document that problem in your extension writeup to save potential users time installing and testing your software.

 
03.10.2011 14:33
#4
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Сообщения: 25922
Quote
Aw: without registration with existing email

components\com_jshopping\models\userguest.php

delete
// check for existing email
$query = "SELECT id FROM #__users WHERE email = '" . $db->getEscaped($this->email) . "' AND id != " . (int)$this->user_id;
$db->setQuery($query);
$xid = intval($db->loadResult());
if($xid && $xid != intval($this->id)) {
$this->_error = addslashes(_JSHOP_REGWARN_EMAIL_INUSE);
return false;
}


 
03.10.2011 16:22
#5
jciconsult
Joomshopping forum user no avatar
Name: Paul Jacobson
03.05.2011
Сообщения: 16
Quote
Aw: without registration with existing email

That seems to work very well. I will do more testing and if it works, post an appropriately strong commendation on the extensions site.

 
11.10.2011 17:56
#6
jciconsult
Joomshopping forum user no avatar
Name: Paul Jacobson
03.05.2011
Сообщения: 16
Quote
Aw: without registration with existing email

This patch seems to solve my major issue. I would STRONGLY recommend it as an option because it is thus far the only concern that I have about your product, at least in its use for our church.

 
20.01.2012 15:00
#7
hankyboy
Joomshopping forum user no avatar
Name: Hank DeNijm
20.01.2012
Сообщения: 1
Quote
Aw: without registration with existing email

Jeez, what's the point of having guest checkout if you can only order once with the same email address? Yes, deleting those lines of code work fine, but WHY ARE THEY EVEN THERE??
Otherwise, pretty good component!

 
20.01.2012 16:19
#8
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Сообщения: 25922
Quote
Aw: without registration with existing email

See version 3.4.0


Последнее изменение: 20.01.2012 16:19
 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.