joomshop registration problems

25.11.2011 17:30
#1
derModellbauer
Joomshopping forum user no avatar
Name: Peter Mosimann
05.09.2011
Сообщения: 28
Quote
joomshop registration problems

hello Webdesigner,
customer complains registration problems in the shop.
can someone tell me what kind of problem this is for the registration?
when I myself do a test registration, I have no problems

has someone similar problems in registration?
please help
peter

joomshop registration problems


Joomla: 1.6.5
JoomShopping: 3.2.7
PHP: 5
Website Url: dermodellbauer.ch

Последнее изменение: 25.11.2011 18:04
 
25.11.2011 22:55
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Сообщения: 25919
Quote
Aw: joomshop registration problems

Bug in IE6

Change file
components\com_jshopping\js\validateForm.js
change code
this.getValue = function(idElement){
if (!idElement){
var element = this.$(this.getCurrent());
} else {
var element = this.$(idElement);
}

switch(element.type){
case 'select-one':
return element.options[element.selectedIndex].value;
break;
case 'radio':
case 'checkbox':
return element.checked;
break;
case 'text':
case 'password':
case 'textarea':
return element.value;
break;
}
}

to
this.getValue = function(idElement){
if (!idElement){
var element = this.$(this.getCurrent());
} else {
var element = this.$(idElement);
}

switch(element.type){
case 'select-one':
return element.options[element.selectedIndex].value;
break;
case 'radio':
case 'checkbox':
return element.checked;
break;
case 'text':
case 'password':
case 'textarea':
if (element.name=="password") return jQuery("#password").val();
return element.value;
break;
}
}


 
26.11.2011 00:01
#3
derModellbauer
Joomshopping forum user no avatar
Name: Peter Mosimann
05.09.2011
Сообщения: 28
Quote
Aw: joomshop registration problems

hello webdesigner,

many thanks for fast reply and help.
the only what has changed is the 4th line from bottom, correct?

if (element.name=="password") return jQuery("#password").val();

I add the line, and customers registration without problems!

thanks
peter


Последнее изменение: 29.11.2011 06:19
 
26.11.2011 00:20
#4
derModellbauer
Joomshopping forum user no avatar
Name: Peter Mosimann
05.09.2011
Сообщения: 28
Quote
Aw: joomshop registration problems

hello Webdesigner,

with registration over the login modul (left side) the page looks O.K.
Aw: joomshop registration problems

when customer try checkout (Kasse) without registration before, the page looks three logins, thats confus!
Aw: joomshop registration problems

how can I hide the red boxed login area?

when I can't hide this, its a solution to align vertical and I hide the left login modul only for this page?

thanks for help
peter


Последнее изменение: 26.11.2011 00:27
 
30.11.2011 23:54
#5
derModellbauer
Joomshopping forum user no avatar
Name: Peter Mosimann
05.09.2011
Сообщения: 28
Quote
Aw: joomshop registration problems

Can someone please help me?

Kann mir bitte jemand weiterhelfen?

 


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.