Deliverycosts not calculated when space after zip code

11.02.2014 10:13
#1
meb
Joomshopping forum user no avatar
Name: meb
16.03.2012
Posts: 14
Quote
Deliverycosts not calculated when space after zip code

Hello

I calculate the delivery costs depending on the zip code. When there is a space after the zip code, delivery costs are 0.-. How can I avoid this without having the field limited to a fixed imput lenght?

Thanks!

 
12.02.2014 10:22
#2
meb
Joomshopping forum user no avatar
Name: meb
16.03.2012
Posts: 14
Quote
Aw: Deliverycosts not calculated when space after zip code

Hi there. I fixed the problem with some Java-Script that removes all spaces in the input-box string in the components\com_jshopping\templates\default\checkout\address.php:

In the header I added the Script:
<script language="javascript" type="text/javascript">
function removeSpaces(string) {
return string.split(' ').join('');
}
</script>

In the input-box for the zip-codes (zip and d_zip) add:
onblur="this.value=removeSpaces(this.value);"

Hope this helps someone else too...
Cheers

 


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.