User login issues

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #142454

-- url of the page with the problem -- : site not yet live
-- HikaShop version -- : Current Business version
-- Joomla version -- : 3.2 Stable
-- PHP version -- :5.4.14
-- Browser(s) name and version -- : Firefox 25.0.1
-- Error-message(debug-mod must be tuned on) -- : Not an error message

I have been trying to find the solution to this for three days, so please any advise would be greatfully appreciated...

I have set up Hikashop to manage the registration and login
When you go to register, that all goes well and the email gets sent to the new user to click to validate the email.

When you click the link in the email it takes you to the a page with two messages
1 - saying you have validated your email and are now registered
2 - this second one is advising:
! Warning
Username and password do not match or you do not have an account yet.

Then when I login to the Backend and check through User Manager the User is there and is listed as enabled and activated.

If I then try to login using the new users ID and password, it redirects me to the registration page...

I am new to both Joomla and Hikashop, and I am trying to work out what is causing this but I need some advise please.

I have rechecked the Permissions, they all seem correct to me.

Please help....

Regards
Jennifer

Please Log in or Create an account to join the conversation.

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #142456

ok an update -
If I go to the shop page and select a product, then go to the checkout it brings me to the login or register page. If I add the User's details here it is logging them in... this is so confusing... where should be looking to fix the first issue...

Cheers
Jennifer

Please Log in or Create an account to join the conversation.

  • Posts: 2334
  • Thank you received: 403
10 years 9 months ago #142473

Hi Jennifer,

I think this might have something to do with Joomla 3.2 since we heard of similar issue with the last releases.
Did you try to register a new user through joomla registration instead of Hikashop? I would help us to understand your issue.

The following user(s) said Thank You: jenbain

Please Log in or Create an account to join the conversation.

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #142578

Hi Eliot,

Thank you so much for helping me.

When I set up the Login, I did it through the login module which is Joomla, in the plug-ins I enabled the Hikashop plugin for users. I set up the registration using Hikashop....

I have added the code from the registration page, it also has the login info there which I hope will help identify what I have done wrong.

If I need to reset the login through Hikashop, can you advise what plugin I should have enabled to do that.

again thank you for your time and help, I really appreciate it.

Regards
Jennifer

<script src="/media/com_hikashop/js/hikashop.js?v=222" type="text/javascript"></script>
  <script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
  <script src="/media/system/js/core.js" type="text/javascript"></script>
  <script src="/media/jui/js/jquery.min.js" type="text/javascript"></script>
  <script src="/media/jui/js/jquery-noconflict.js" type="text/javascript"></script>
  <script src="/media/jui/js/jquery-migrate.min.js" type="text/javascript"></script>
  <script src="/media/jui/js/chosen.jquery.min.js" type="text/javascript"></script>
  <script src="/media/system/js/mootools-more.js" type="text/javascript"></script>
  <script src="/media/system/js/validate.js" type="text/javascript"></script>
  <script src="/plugins/system/rokbox/assets/js/rokbox.js" type="text/javascript"></script>
  <script src="/libraries/gantry/js/gantry-totop.js" type="text/javascript"></script>
  <script src="/libraries/gantry/js/browser-engines.js" type="text/javascript"></script>
  <script src="/templates/gantry/js/rokmediaqueries.js" type="text/javascript"></script>
  <script src="/templates/gantry/js/load-transition.js" type="text/javascript"></script>
  <script src="/modules/mod_roknavmenu/themes/default/js/rokmediaqueries.js" type="text/javascript"></script>
  <script src="/modules/mod_roknavmenu/themes/default/js/sidemenu.js" type="text/javascript"></script>
  <script type="text/javascript">

				jQuery(document).ready(function (){
					jQuery('select').chosen({
						disable_search_threshold : 10,
						allow_single_deselect : true
					});
				});
			
<!--

		function hikashopSubmitForm(form)
		{
			var button = document.getElementById('login_view_action'),
	 			currentForm = document.forms[form];
			if(!currentForm)
				return false;

			if (form=="hikashop_checkout_form")
			{
				var registrationMethod = currentForm.elements["data[register][registration_method]"];

				if (registrationMethod)
				{
					if (registrationMethod[0].checked)
						hikashopSubmitFormLog(form,button,currentForm);
					else if ( registrationMethod[1].checked || registrationMethod[2].checked )
						hikashopSubmitFormRegister(form,button,currentForm);
				}
				else
				{
					var usernameValue = "", passwdValue = "", d = document, el = null;
					el = d.getElementById("username");
					if(!el) el = d.getElementById('modlgn-username');
					if(el) usernameValue = el.value;

					el = d.getElementById("passwd");
					if(!el) el = d.getElementById("modlgn-passwd");
					if(el) passwdValue = el.value;

					var registeremailValue = "", registeremailconfValue = "", firstnameValue = "", lastnameValue = "";
					el = d.getElementById("register_email");
					if(el) registeremailValue = el.value;
					el = d.getElementById("register_email_confirm");
					if(el) registeremailconfValue = el.value;

					el = d.getElementById("address_firstname");
					if(el) firstnameValue = el.value;
					el = d.getElementById("address_lastname");
					if(el) lastnameValue = el.value;

					if (usernameValue!="" && passwdValue!="") {
						hikashopSubmitFormLog(form,button,currentForm);
					} else if (usernameValue!="" ||  passwdValue!="") {
						if (registeremailValue=="" && registeremailconfValue=="" && firstnameValue=="" && lastnameValue=="")
							hikashopSubmitFormLog(form,button,currentForm);
						else
							hikashopSubmitFormRegister(form,button,currentForm);
					} else {
						hikashopSubmitFormRegister(form,button,currentForm);
					}
				}
			} else if (form=="hikashop_registration_form") {
				hikashopSubmitFormRegister(form,button,currentForm);
			}
			return false;
		}

		function hikashopSubmitFormRegister(form,button,currentForm)
		{
			if ( hikashopCheckChangeForm("register",form) && hikashopCheckChangeForm("user",form) && hikashopCheckChangeForm("address",form) )
			{
				if(button)
					button.value="register";
				currentForm.submit();
			}

		}

		function hikashopSubmitFormLog(form,button,currentForm)
		{
			if(button)
				button.value="login";
			currentForm.submit();
		}
//-->

<!--
var hikashopFieldsJs=Array();
			hikashopFieldsJs['reqFieldsComp']=Array();
			hikashopFieldsJs['validFieldsComp']=Array();
//-->

<!--

			function hikashopToggleFields(new_value,namekey,field_type,id,prefix){
				var arr = new Array();
				var checked = 0;
				arr = document.getElementsByName('data['+field_type+']['+namekey+'][]');
				if(typeof arr[0] != 'undefined' && typeof arr[0].length != 'undefined'){
					var size = arr[0].length;
				}else{
					var size = arr.length;
				}
				if(prefix === undefined || !prefix || prefix.length == 0 || prefix.substr(-1) != '_')
					prefix = 'hikashop_';
				for(var c = 0; c < size; c++){
					if(typeof arr[0] != 'undefined' && typeof arr[0].length != 'undefined'){
						var obj = document.getElementsByName('data['+field_type+']['+namekey+'][]').item(0).item(c);
					}else{
						var obj = document.getElementsByName('data['+field_type+']['+namekey+'][]').item(c);
					}
					if((typeof obj.checked != 'undefined' && obj.checked) || (typeof obj.selected != 'undefined' && obj.selected)){
						checked++;
					}
					if((typeof obj.type != 'undefined' && obj.type=='checkbox')){
						var specialField = true;
					}
				}
				var checkedGood = 0;
				var count = 0;
				if(typeof hikashopFieldsJs != 'undefined' && typeof hikashopFieldsJs[field_type] != 'undefined'){
					for(var k in hikashopFieldsJs[field_type][namekey]) {
						if(typeof hikashopFieldsJs[field_type][namekey][k] == 'object'){
							for(var l in hikashopFieldsJs[field_type][namekey][k]){
								if(typeof hikashopFieldsJs[field_type][namekey][k][l] == 'string'){
									count++;
									newEl = document.getElementById(namekey+'_'+k);
									if(newEl && ((typeof newEl.checked != 'undefined' && newEl.checked) || (typeof newEl.selected != 'undefined' && newEl.selected))){
										checkedGood++;
									}
								}
							}
						}
					}
				}
				if(typeof arr[0] != 'undefined' && typeof arr[0].length != 'undefined' && count>1){
					var specialField = true;
				}
				if(typeof hikashopFieldsJs != 'undefined' && typeof hikashopFieldsJs[field_type] != 'undefined'){
					for(var j in hikashopFieldsJs[field_type][namekey]) {
						if(typeof hikashopFieldsJs[field_type][namekey][j] == 'object'){
							for(var i in hikashopFieldsJs[field_type][namekey][j]){
								if(typeof hikashopFieldsJs[field_type][namekey][j][i] == 'string'){
									var elementName = prefix+field_type+'_'+hikashopFieldsJs[field_type][namekey][j][i];
									if(id){
										elementName = elementName + '_' + id;
									}
									el = document.getElementById(elementName);
									if(!el) continue;
									if(specialField){
										if(checkedGood==count && checkedGood==checked && new_value!=''){
											el.style.display='';
											hikashopToggleFields(el.value,hikashopFieldsJs[field_type][namekey][j][i],field_type,id,prefix);
										}else{
											el.style.display='none';
											hikashopToggleFields('',hikashopFieldsJs[field_type][namekey][j][i],field_type,id,prefix);
										}
									}else{
										if(j==new_value){
											el.style.display='';
											hikashopToggleFields(el.value,hikashopFieldsJs[field_type][namekey][j][i],field_type,id,prefix);
										}else{
											el.style.display='none';
											hikashopToggleFields('',hikashopFieldsJs[field_type][namekey][j][i],field_type,id,prefix);
										}
									}
								}
							}
						}
					}
				}
			}
//-->

<!--

					hikashopFieldsJs['reqFieldsComp']['register'] = Array('name','username','email','email_confirm','password','password2');
					hikashopFieldsJs['validFieldsComp']['register'] = Array('Please enter a value for the field Name','Please enter a value for the field Username','Please enter a value for the field E-mail','Please enter a value for the field E-mail confirmation','Please enter a value for the field Password','Please enter a value for the field Verify Password');
					hikashopFieldsJs['password_different'] = 'Passwords do not match';
					hikashopFieldsJs['valid_email'] = 'Please enter a valid e-mail address';
					hikashopFieldsJs['reqFieldsComp']['address'] = Array('bowlsclub','address_title','address_firstname','address_lastname','address_street','address_city','address_post_code','address_telephone','address_state','address_country');
					hikashopFieldsJs['validFieldsComp']['address'] = Array('Please enter your current bowls club','Please enter a value for the field Title','Please enter a value for the field First name','Please enter a value for the field Last name','Please enter a value for the field Address','Please enter a value for the field City','Please enter a value for the field Post code','Please enter a value for the field Telephone','Please enter a value for the field State','Please enter a value for the field Country');
					hikashopFieldsJs['valid_phone'] = 'Please enter a valid phone number';
//-->

var RecaptchaOptions = {theme : 'clean'};
if (typeof RokBoxSettings == 'undefined') RokBoxSettings = {pc: '100'};



function keepAlive() {	var myAjax = new Request({method: "get", url: "index.php"}).send();} do_nothing( function(){ keepAlive.periodical(3540000); });
  </script>
  <script type="text/javascript">
    (function() {
      var strings = {"JGLOBAL_SELECT_SOME_OPTIONS":"Select some options","JGLOBAL_SELECT_AN_OPTION":"Select an option","JGLOBAL_SELECT_NO_RESULTS_MATCH":"No results match","JLIB_FORM_FIELD_INVALID":"Invalid field:&#160"};
      if (typeof Joomla == 'undefined') {
        Joomla = {};
        Joomla.JText = strings;
      }
      else {
        Joomla.JText.load(strings);
      }
    })();
  </script>
  <script type='text/javascript'>
				/*<![CDATA[*/
					var jax_live_site = 'index.php';
					var jax_token_var='223d23609ec97540f269ee8bee26e4f6';
				/*]]>*/
				</script><script type="text/javascript" src="plugins/system/azrul.system/pc_includes/ajax_1.5.pack.js"></script>
</head>
<body  class="logo-type-custom headerstyle-dark font-family-helvetica font-size-is-default menu-type-dropdownmenu layout-mode-responsive col12">
        <header id="rt-top-surround">
				<div id="rt-top" >
			<div class="rt-container">
				<div class="rt-grid-12 rt-alpha rt-omega">
    	<div class="rt-block menu-block">
		<div class="gf-menu-device-container responsive-type-panel"></div>
<ul class="gf-menu l1 " >
                    <li class="item167" >

            <a class="item" href="/"  >

                                Home                            </a>


                    </li>
                            <li class="item264" >

            <a class="item" href="/index.php/shop-home"  >

                                Shop                            </a>


                    </li>
                            <li class="item165" >

            <a class="item" href="/index.php/rollup"  >

                                Roll Up                            </a>


                    </li>
                            <li class="item166" >

            <a class="item" href="/index.php/contact-us-main"  >

                                Contact Us                            </a>


                    </li>
                            <li class="item248" >

            <a class="item" href="/index.php/about-us"  >

                                About Us                            </a>


                    </li>
                            <li class="item151" >

            <a class="item" href="/index.php/ohanah-events-calendar"  >

                                Events                            </a>


                    </li>
            </ul>		<div class="clear"></div>
	</div>
	
</div>
				<div class="clear"></div>
			</div>
		</div>
						<div id="rt-header">
			<div class="rt-container">
				<div class="rt-grid-12 rt-alpha rt-omega">
               <div class="rt-block ">
           	<div class="module-surround">
	           		                	<div class="module-content">
	                		

<div class="custom"  >
	<div id="header-bb"><img src="/images/headers/bbrollup_banner700x142_abn.jpg" alt="Bowls Business - Bringing the store to your door" /></div></div>
	                	</div>
                	</div>
           </div>
	
</div>
				<div class="clear"></div>
			</div>
		</div>
			</header>
		    <div id="rt-drawer">
        <div class="rt-container">
                        <div class="clear"></div>
        </div>
    </div>
    		<div id="rt-transition" class="rt-hidden">
		<div id="rt-mainbody-surround">
																					<div class="rt-container">
		    		          
<div id="rt-main" class="mb9-sa3">
                <div class="rt-container">
                    <div class="rt-grid-9 ">
                                                						<div class="rt-block">
	                        <div id="rt-mainbody">
								<div class="component-content">
	                            	<form action="/index.php/component/hikashop/user/register?Itemid=282" method="post" name="hikashop_registration_form" enctype="multipart/form-data" onsubmit="hikashopSubmitForm('hikashop_registration_form'); return false;">
	<div class="hikashop_user_registration_page">
		<fieldset class="input">
			<h2>Registration</h2>
			<fieldset class="form-horizontal">
	<div class="control-group hikashop_registration_name_line" id="hikashop_registration_name_line">
		<div class="control-label">
			<label id="namemsg" for="register_name" class="required" title="">Name</label>
		</div>
		<div class="controls">
			<input type="text" name="data[register][name]" id="register_name" value="" class="required" size="30" maxlength="50"  aria-required="true" required="required"> *
		</div>
	</div>
	<div class="control-group hikashop_registration_username_line" id="hikashop_registration_username_line">
		<div class="control-label">
			<label id="usernamemsg" for="register_username" class="required" title="">Username</label>
		</div>
		<div class="controls">
			<input type="text" name="data[register][username]" id="register_username" value="" class="required validate-username" maxlength="25" size="30"  aria-required="true" required="required"> *
		</div>
	</div>
	<div class="control-group hikashop_registration_email_line">
		<div class="control-label">
			<label id="emailmsg" for="register_email" class="required" title="">E-mail</label>
		</div>
		<div class="controls">
			<input type="text" name="data[register][email]" id="register_email" value="" class="required validate-email" maxlength="100" size="30" aria-required="true" required="required"> *
		</div>
	</div>
	<div class="control-group hikashop_registration_email_confirm_line">
		<div class="control-label">
			<label id="email_confirm_msg" for="register_email_confirm" class="required" title="">E-mail confirmation</label>
		</div>
		<div class="controls">
			<input type="text" name="data[register][email_confirm]" id="register_email_confirm" value="" class="required validate-email" maxlength="100" size="30"  aria-required="true" required="required" onchange="if(this.value!=document.getElementById('register_email').value){alert('The confirmation email differs from the email your entered. Please enter it again.'); this.value = '';}"> *
		</div><div class="recaptcha"><label>Enter the leterrs/numbers here</label><script type="text/javascript" src="https://www.google.com/recaptcha/api/challenge?k=6Ldx7eYSAAAAAITCZi5wnRbc2f5_zMKc2g0VHZov"></script>

		<noscript>
				<iframe src="https://www.google.com/recaptcha/api/noscript?k=6Ldx7eYSAAAAAITCZi5wnRbc2f5_zMKc2g0VHZov" height="300" width="500" frameborder="0"></iframe><br/>
				<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
				<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
		</noscript></div>
	</div>
	<div class="control-group hikashop_registration_password_line" id="hikashop_registration_password_line">
		<div class="control-label">
			<label id="pwmsg" for="register_password" class="required" title="">Password</label>
		</div>
		<div class="controls">
			<input type="password" name="data[register][password]" id="register_password" value="" class="required validate-password" size="30"  aria-required="true" required="required"> *
		</div>
	</div>
	<div class="control-group hikashop_registration_password2_line" id="hikashop_registration_password2_line">
		<div class="control-label">
			<label id="pw2msg" for="register_password2" class="required" title="">Verify Password</label>
		</div>
		<div class="controls">
			<input type="password" name="data[register][password2]" id="register_password2" value="" class="required validate-password" size="30"  aria-required="true" required="required"> *
		</div>
	</div>

	<div class=""><legend>Address information</legend></div>
	<div class="control-group hikashop_registration_bowlsclub_line" id="hikashop_address_bowlsclub">
		<div class="control-label">
			<label for="bowlsclub">Your Bowls Club</label>		</div>
		<div class="controls">
<input class="inputbox" id="bowlsclub"    onchange="hikashopToggleFields(this.value,'bowlsclub','address',0);" type="text" name="data[address][bowlsclub]" value="Enter your club name here" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_title_line" id="hikashop_address_address_title">
		<div class="control-label">
			<label for="address_title">Title</label>		</div>
		<div class="controls">
<select id="address_title" name="data[address][address_title]" size="1" onchange="hikashopToggleFields(this.value,'address_title','address',0);"><option value="Mr" id="address_title_Mr" selected="selected" >Mr</option><option value="Mrs" id="address_title_Mrs" >Mrs</option><option value="Miss" id="address_title_Miss" >Miss</option><option value="Ms" id="address_title_Ms" >Ms</option><option value="Dr" id="address_title_Dr" >Dr</option></select> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_firstname_line" id="hikashop_address_address_firstname">
		<div class="control-label">
			<label for="address_firstname">First name</label>		</div>
		<div class="controls">
<input class="inputbox" id="address_firstname"    onchange="hikashopToggleFields(this.value,'address_firstname','address',0);" type="text" name="data[address][address_firstname]" value="" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_lastname_line" id="hikashop_address_address_lastname">
		<div class="control-label">
			<label for="address_lastname">Last name</label>		</div>
		<div class="controls">
<input class="inputbox" id="address_lastname"    onchange="hikashopToggleFields(this.value,'address_lastname','address',0);" type="text" name="data[address][address_lastname]" value="" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_street_line" id="hikashop_address_address_street">
		<div class="control-label">
			<label for="address_street">Address</label>		</div>
		<div class="controls">
<input class="inputbox" id="address_street"    onchange="hikashopToggleFields(this.value,'address_street','address',0);" type="text" name="data[address][address_street]" value="" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_city_line" id="hikashop_address_address_city">
		<div class="control-label">
			<label for="address_city">City</label>		</div>
		<div class="controls">
<input class="inputbox" id="address_city"    onchange="hikashopToggleFields(this.value,'address_city','address',0);" type="text" name="data[address][address_city]" value="" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_post_code_line" id="hikashop_address_address_post_code">
		<div class="control-label">
			<label for="address_post_code">Post code</label>		</div>
		<div class="controls">
<input class="inputbox" id="address_post_code"    onchange="hikashopToggleFields(this.value,'address_post_code','address',0);" type="text" name="data[address][address_post_code]" value="" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_telephone_line" id="hikashop_address_address_telephone">
		<div class="control-label">
			<label for="address_telephone">Telephone</label>		</div>
		<div class="controls">
<input class="inputbox" id="address_telephone"    onchange="hikashopToggleFields(this.value,'address_telephone','address',0);" type="text" name="data[address][address_telephone]" value="" aria-required="true" required="required" /> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_state_line" id="hikashop_address_address_state">
		<div class="control-label">
			<label for="address_state">State</label>		</div>
		<div class="controls">
<span id="data_address_address_state_container"><select id="data_address_address_state" name="data[address][address_state]" size="1"><option value="state_Australian_Capital_Territory_430" id="data_address_address_state_state_Australian_Capital_Territory_430" selected="selected" >Australian Capital Territory</option><option value="state_New_South_Wales_431" id="data_address_address_state_state_New_South_Wales_431" >New South Wales</option><option value="state_Northern_Territory_432" id="data_address_address_state_state_Northern_Territory_432" >Northern Territory</option><option value="state_Queensland_433" id="data_address_address_state_state_Queensland_433" >Queensland</option><option value="state_South_Australia_434" id="data_address_address_state_state_South_Australia_434" >South Australia</option><option value="state_Tasmania_435" id="data_address_address_state_state_Tasmania_435" >Tasmania</option><option value="state_Victoria_436" id="data_address_address_state_state_Victoria_436" >Victoria</option><option value="state_Western_Australia_437" id="data_address_address_state_state_Western_Australia_437" >Western Australia</option></select></span><input type="hidden" id="data_address_address_state_default_value" name="data_address_address_state_default_value" value=""/> <span class="hikashop_field_required">*</span>		</div>
	</div>
	<div class="control-group hikashop_registration_address_country_line" id="hikashop_address_address_country">
		<div class="control-label">
			<label for="address_country">Country</label>		</div>
		<div class="controls">
<select id="address_country" name="data[address][address_country]" size="1" onchange="window.hikashop.changeState(this,'data_address_address_state','index.php?option=com_hikashop&ctrl=checkout&task=state&tmpl=component&field_type=address&field_id=data_address_address_state&field_namekey=address_state&namekey='+this.value);hikashopToggleFields(this.value,'address_country','address',0);"><option value="country_Afghanistan_1" id="address_country_country_Afghanistan_1" >Afghanistan (?????????)</option><option value="country_Albania_2" id="address_country_country_Albania_2" >Albania (Shqipëria)</option><option value="country_Algeria_3" id="address_country_country_Algeria_3" >Algeria (???????)</option><option value="country_American_Samoa_4" id="address_country_country_American_Samoa_4" >American Samoa</option><option value="country_Andorra_5" id="address_country_country_Andorra_5" >Andorra</option><option value="country_Angola_6" id="address_country_country_Angola_6" >Angola</option><option value="country_Anguilla_7" id="address_country_country_Anguilla_7" >Anguilla</option><option value="country_Antarctica_8" id="address_country_country_Antarctica_8" >Antarctica</option><option value="country_Antigua_and_Barbuda_9" id="address_country_country_Antigua_and_Barbuda_9" >Antigua and Barbuda</option><option value="country_Argentina_10" id="address_country_country_Argentina_10" >Argentina</option><option value="country_Armenia_11" id="address_country_country_Armenia_11" >Armenia (????????)</option><option value="country_Aruba_12" id="address_country_country_Aruba_12" >Aruba</option><option value="country_Australia_13" id="address_country_country_Australia_13" selected="selected" >Australia</option><option value="country_Austria_14" id="address_country_country_Austria_14" >Austria (Österreich)</option><option value="country_Azerbaijan_15" id="address_country_country_Azerbaijan_15" >Azerbaijan (Az?rbaycan)</option><option value="country_Bahamas_16" id="address_country_country_Bahamas_16" >Bahamas</option><option value="country_Bahrain_17" id="address_country_country_Bahrain_17" >Bahrain (???????)</option><option value="country_Bangladesh_18" id="address_country_country_Bangladesh_18" >Bangladesh (????????')</option><option value="country_Barbados_19" id="address_country_country_Barbados_19" >Barbados</option><option value="country_Belarus_20" id="address_country_country_Belarus_20" >Belarus (????????)</option><option value="country_Belgium_21" id="address_country_country_Belgium_21" >Belgium (België • Belgique • Belgien)</option><option value="country_Belize_22" id="address_country_country_Belize_22" >Belize</option><option value="country_Benin_23" id="address_country_country_Benin_23" >Benin (Bénin)</option><option value="country_Bermuda_24" id="address_country_country_Bermuda_24" >Bermuda</option><option value="country_Bhutan_25" id="address_country_country_Bhutan_25" >Bhutan (??????????)</option><option value="country_Bolivia_26" id="address_country_country_Bolivia_26" >Bolivia (Wuliwya • Volívia • Buliwya)</option><option value="country_Bosnia_and_Herzegowina_27" id="address_country_country_Bosnia_and_Herzegowina_27" >Bosnia and Herzegowina (Bosna i Hercegovina)</option><option value="country_Botswana_28" id="address_country_country_Botswana_28" >Botswana</option><option value="country_Bouvet_Island_29" id="address_country_country_Bouvet_Island_29" >Bouvet Island</option><option value="country_Brazil_30" id="address_country_country_Brazil_30" >Brazil</option><option value="country_British_Indian_Ocean_Territory_31" id="address_country_country_British_Indian_Ocean_Territory_31" >British Indian Ocean Territory</option><option value="country_Brunei_Darussalam_32" id="address_country_country_Brunei_Darussalam_32" >Brunei Darussalam</option><option value="country_Bulgaria_33" id="address_country_country_Bulgaria_33" >Bulgaria (????????)</option><option value="country_Burkina_Faso_34" id="address_country_country_Burkina_Faso_34" >Burkina Faso</option><option value="country_Burundi_35" id="address_country_country_Burundi_35" >Burundi (Uburundi)</option><option value="country_Cambodia_36" id="address_country_country_Cambodia_36" >Cambodia (???????)</option><option value="country_Cameroon_37" id="address_country_country_Cameroon_37" >Cameroon (Cameroun)</option><option value="country_Canada_38" id="address_country_country_Canada_38" >Canada</option><option value="country_Cape_Verde_39" id="address_country_country_Cape_Verde_39" >Cape Verde (Cabo Verde)</option><option value="country_Cayman_Islands_40" id="address_country_country_Cayman_Islands_40" >Cayman Islands</option><option value="country_Central_African_Republic_41" id="address_country_country_Central_African_Republic_41" >Central African Republic (Centrafrique • Bêafrîka)</option><option value="country_Chad_42" id="address_country_country_Chad_42" >Chad (Tchad • ????)</option><option value="country_Chile_43" id="address_country_country_Chile_43" >Chile</option><option value="country_China_44" id="address_country_country_China_44" >China (?? • ??)</option><option value="country_Christmas_Island_45" id="address_country_country_Christmas_Island_45" >Christmas Island</option><option value="country_Cocos__Keeling__Islands_46" id="address_country_country_Cocos__Keeling__Islands_46" >Cocos (Keeling) Islands</option><option value="country_Colombia_47" id="address_country_country_Colombia_47" >Colombia</option><option value="country_Comoros_48" id="address_country_country_Comoros_48" >Comoros (Komori • Comores • ??? ?????)</option><option value="country_Congo_49" id="address_country_country_Congo_49" >Congo</option><option value="country_Cook_Islands_50" id="address_country_country_Cook_Islands_50" >Cook Islands</option><option value="country_Costa_Rica_51" id="address_country_country_Costa_Rica_51" >Costa Rica</option><option value="country_Cote_D_Ivoire_52" id="address_country_country_Cote_D_Ivoire_52" >Cote D'Ivoire</option><option value="country_Croatia_53" id="address_country_country_Croatia_53" >Croatia (Hrvatska)</option><option value="country_Cuba_54" id="address_country_country_Cuba_54" >Cuba</option><option value="country_Cyprus_55" id="address_country_country_Cyprus_55" >Cyprus (??p??? • Kibris)</option><option value="country_Czech_Republic_56" id="address_country_country_Czech_Republic_56" >Czech Republic (Cesko)</option><option value="country_Denmark_57" id="address_country_country_Denmark_57" >Denmark (Danmark)</option><option value="country_Djibouti_58" id="address_country_country_Djibouti_58" >Djibouti (??????)</option><option value="country_Dominica_59" id="address_country_country_Dominica_59" >Dominica</option><option value="country_Dominican_Republic_60" id="address_country_country_Dominican_Republic_60" >Dominican Republic (República Dominicana)</option><option value="country_East_Timor_61" id="address_country_country_East_Timor_61" >East Timor (Timór-Leste)</option><option value="country_Ecuador_62" id="address_country_country_Ecuador_62" >Ecuador</option><option value="country_Egypt_63" id="address_country_country_Egypt_63" >Egypt (???)</option><option value="country_El_Salvador_64" id="address_country_country_El_Salvador_64" >El Salvador</option><option value="country_Equatorial_Guinea_65" id="address_country_country_Equatorial_Guinea_65" >Equatorial Guinea (Guinée équatoriale)</option><option value="country_Eritrea_66" id="address_country_country_Eritrea_66" >Eritrea (???? • ??????)</option><option value="country_Estonia_67" id="address_country_country_Estonia_67" >Estonia (Eesti)</option><option value="country_Ethiopia_68" id="address_country_country_Ethiopia_68" >Ethiopia (?????)</option><option value="country_Falkland_Islands__Malvinas__69" id="address_country_country_Falkland_Islands__Malvinas__69" >Falkland Islands (Malvinas)</option><option value="country_Faroe_Islands_70" id="address_country_country_Faroe_Islands_70" >Faroe Islands</option><option value="country_Fiji_71" id="address_country_country_Fiji_71" >Fiji (Viti • ?????)</option><option value="country_Finland_72" id="address_country_country_Finland_72" >Finland (Suomi)</option><option value="country_France_73" id="address_country_country_France_73" >France</option><option value="country_French_Guiana_75" id="address_country_country_French_Guiana_75" >French Guiana</option><option value="country_French_Polynesia_76" id="address_country_country_French_Polynesia_76" >French Polynesia</option><option value="country_French_Southern_Territories_77" id="address_country_country_French_Southern_Territories_77" >French Southern Territories</option><option value="country_Gabon_78" id="address_country_country_Gabon_78" >Gabon</option><option value="country_Gambia_79" id="address_country_country_Gambia_79" >Gambia</option><option value="country_Georgia_80" id="address_country_country_Georgia_80" >Georgia (??????????)</option><option value="country_Germany_81" id="address_country_country_Germany_81" >Germany (Deutschland)</option><option value="country_Ghana_82" id="address_country_country_Ghana_82" >Ghana</option><option value="country_Gibraltar_83" id="address_country_country_Gibraltar_83" >Gibraltar</option><option value="country_Greece_84" id="address_country_country_Greece_84" >Greece (????da)</option><option value="country_Greenland_85" id="address_country_country_Greenland_85" >Greenland</option><option value="country_Grenada_86" id="address_country_country_Grenada_86" >Grenada</option><option value="country_Guam_88" id="address_country_country_Guam_88" >Guam</option><option value="country_Guatemala_89" id="address_country_country_Guatemala_89" >Guatemala</option><option value="country_Guinea_90" id="address_country_country_Guinea_90" >Guinea (Guinée)</option><option value="country_Guinea_Bissau_91" id="address_country_country_Guinea_Bissau_91" >Guinea-Bissau (Guiné-Bissau)</option><option value="country_Guyana_92" id="address_country_country_Guyana_92" >Guyana</option><option value="country_Haiti_93" id="address_country_country_Haiti_93" >Haiti (Haïti • Ayiti)</option><option value="country_Heard_and_McDonald_Islands_94" id="address_country_country_Heard_and_McDonald_Islands_94" >Heard and McDonald Islands</option><option value="country_Honduras_95" id="address_country_country_Honduras_95" >Honduras</option><option value="country_Hong_Kong_96" id="address_country_country_Hong_Kong_96" >Hong Kong (??)</option><option value="country_Hungary_97" id="address_country_country_Hungary_97" >Hungary (Magyarország)</option><option value="country_Iceland_98" id="address_country_country_Iceland_98" >Iceland (Ísland)</option><option value="country_India_99" id="address_country_country_India_99" >India (????)</option><option value="country_Indonesia_100" id="address_country_country_Indonesia_100" >Indonesia</option><option value="country_Iran_101" id="address_country_country_Iran_101" >Iran (?????)</option><option value="country_Iraq_102" id="address_country_country_Iraq_102" >Iraq (????? • ??????)</option><option value="country_Ireland_103" id="address_country_country_Ireland_103" >Ireland (Éire)</option><option value="country_Israel_104" id="address_country_country_Israel_104" >Israel (??????? • ?????)</option><option value="country_Italy_105" id="address_country_country_Italy_105" >Italy (Italia)</option><option value="country_Jamaica_106" id="address_country_country_Jamaica_106" >Jamaica</option><option value="country_Japan_107" id="address_country_country_Japan_107" >Japan (??)</option><option value="country_Jordan_108" id="address_country_country_Jordan_108" >Jordan (???????)</option><option value="country_Kazakhstan_109" id="address_country_country_Kazakhstan_109" >Kazakhstan (?????????)</option><option value="country_Kenya_110" id="address_country_country_Kenya_110" >Kenya</option><option value="country_Kiribati_111" id="address_country_country_Kiribati_111" >Kiribati</option><option value="country_Korea__North_112" id="address_country_country_Korea__North_112" >Korea, North (???)</option><option value="country_Korea__South_113" id="address_country_country_Korea__South_113" >Korea, South (??)</option><option value="country_Kuwait_114" id="address_country_country_Kuwait_114" >Kuwait (??????)</option><option value="country_Kyrgyzstan_115" id="address_country_country_Kyrgyzstan_115" >Kyrgyzstan (??????????)</option><option value="country_Laos_116" id="address_country_country_Laos_116" >Laos (????????)</option><option value="country_Latvia_117" id="address_country_country_Latvia_117" >Latvia (Latvija)</option><option value="country_Lebanon_118" id="address_country_country_Lebanon_118" >Lebanon (?????)</option><option value="country_Lesotho_119" id="address_country_country_Lesotho_119" >Lesotho</option><option value="country_Liberia_120" id="address_country_country_Liberia_120" >Liberia</option><option value="country_Libyan_Arab_Jamahiriya_121" id="address_country_country_Libyan_Arab_Jamahiriya_121" >Libyan Arab Jamahiriya</option><option value="country_Liechtenstein_122" id="address_country_country_Liechtenstein_122" >Liechtenstein</option><option value="country_Lithuania_123" id="address_country_country_Lithuania_123" >Lithuania (Lietuva)</option><option value="country_Luxembourg_124" id="address_country_country_Luxembourg_124" >Luxembourg (Luxemburg • Lëtzebuerg)</option><option value="country_Macau_125" id="address_country_country_Macau_125" >Macau (?? • ??)</option><option value="country_Macedonia_126" id="address_country_country_Macedonia_126" >Macedonia (??????????)</option><option value="country_Madagascar_127" id="address_country_country_Madagascar_127" >Madagascar (Madagasikara)</option><option value="country_Malawi_128" id="address_country_country_Malawi_128" >Malawi (Malawi)</option><option value="country_Malaysia_129" id="address_country_country_Malaysia_129" >Malaysia</option><option value="country_Maldives_130" id="address_country_country_Maldives_130" >Maldives (????????????)</option><option value="country_Mali_131" id="address_country_country_Mali_131" >Mali</option><option value="country_Malta_132" id="address_country_country_Malta_132" >Malta</option><option value="country_Marshall_Islands_133" id="address_country_country_Marshall_Islands_133" >Marshall Islands (Aelon¯ in M¸ajel)</option><option value="country_Mauritania_135" id="address_country_country_Mauritania_135" >Mauritania (????????? • Mauritanie)</option><option value="country_Mauritius_136" id="address_country_country_Mauritius_136" >Mauritius (Maurice)</option><option value="country_Mayotte_137" id="address_country_country_Mayotte_137" >Mayotte</option><option value="country_Mexico_138" id="address_country_country_Mexico_138" >Mexico (México • Mexihco)</option><option value="country_Micronesia_139" id="address_country_country_Micronesia_139" >Micronesia</option><option value="country_Moldova_140" id="address_country_country_Moldova_140" >Moldova</option><option value="country_Monaco_141" id="address_country_country_Monaco_141" >Monaco</option><option value="country_Mongolia_142" id="address_country_country_Mongolia_142" >Mongolia (?????? ???)</option><option value="country_Montenegro_19668" id="address_country_country_Montenegro_19668" >Montenegro (???? ????)</option><option value="country_Montserrat_143" id="address_country_country_Montserrat_143" >Montserrat</option><option value="country_Morocco_144" id="address_country_country_Morocco_144" >Morocco (??????)</option><option value="country_Mozambique_145" id="address_country_country_Mozambique_145" >Mozambique (Moçambique)</option><option value="country_Myanmar_146" id="address_country_country_Myanmar_146" >Myanmar</option><option value="country_Namibia_147" id="address_country_country_Namibia_147" >Namibia</option><option value="country_Nauru_148" id="address_country_country_Nauru_148" >Nauru</option><option value="country_Nepal_149" id="address_country_country_Nepal_149" >Nepal (?????)</option><option value="country_Netherlands_150" id="address_country_country_Netherlands_150" >Netherlands (Nederland)</option><option value="country_Netherlands_Antilles_151" id="address_country_country_Netherlands_Antilles_151" >Netherlands Antilles</option><option value="country_New_Caledonia_152" id="address_country_country_New_Caledonia_152" >New Caledonia (Nouvelle-Calédonie)</option><option value="country_New_Zealand_153" id="address_country_country_New_Zealand_153" >New Zealand (Aotearoa)</option><option value="country_Nicaragua_154" id="address_country_country_Nicaragua_154" >Nicaragua</option><option value="country_Niger_155" id="address_country_country_Niger_155" >Niger</option><option value="country_Nigeria_156" id="address_country_country_Nigeria_156" >Nigeria</option><option value="country_Niue_157" id="address_country_country_Niue_157" >Niue</option><option value="country_Norfolk_Island_158" id="address_country_country_Norfolk_Island_158" >Norfolk Island</option><option value="country_Northern_Mariana_Islands_159" id="address_country_country_Northern_Mariana_Islands_159" >Northern Mariana Islands</option><option value="country_Norway_160" id="address_country_country_Norway_160" >Norway (Norge / Noreg)</option><option value="country_Oman_161" id="address_country_country_Oman_161" >Oman (????)</option><option value="country_Pakistan_162" id="address_country_country_Pakistan_162" >Pakistan (???????)</option><option value="country_Palau_163" id="address_country_country_Palau_163" >Palau (Belau)</option><option value="country_Panama_164" id="address_country_country_Panama_164" >Panama (Panamá)</option><option value="country_Papua_New_Guinea_165" id="address_country_country_Papua_New_Guinea_165" >Papua New Guinea (Papua Niugini)</option><option value="country_Paraguay_166" id="address_country_country_Paraguay_166" >Paraguay (Paraguái)</option><option value="country_Peru_167" id="address_country_country_Peru_167" >Peru (Perú)</option><option value="country_Philippines_168" id="address_country_country_Philippines_168" >Philippines (Pilipinas)</option><option value="country_Pitcairn_169" id="address_country_country_Pitcairn_169" >Pitcairn</option><option value="country_Poland_170" id="address_country_country_Poland_170" >Poland (Polska)</option><option value="country_Portugal_171" id="address_country_country_Portugal_171" >Portugal</option><option value="country_Puerto_Rico_172" id="address_country_country_Puerto_Rico_172" >Puerto Rico</option><option value="country_Qatar_173" id="address_country_country_Qatar_173" >Qatar (???? ???)</option><option value="country_Romania_175" id="address_country_country_Romania_175" >Romania (România)</option><option value="country_Russia_176" id="address_country_country_Russia_176" >Russia (??????)</option><option value="country_Rwanda_177" id="address_country_country_Rwanda_177" >Rwanda</option><option value="country_Saint_Kitts_and_Nevis_178" id="address_country_country_Saint_Kitts_and_Nevis_178" >Saint Kitts and Nevis</option><option value="country_Saint_Lucia_179" id="address_country_country_Saint_Lucia_179" >Saint Lucia</option><option value="country_Saint_Vincent_and_the_Grenadines_180" id="address_country_country_Saint_Vincent_and_the_Grenadines_180" >Saint Vincent and the Grenadines</option><option value="country_Samoa_181" id="address_country_country_Samoa_181" >Samoa (Samoa)</option><option value="country_San_Marino_182" id="address_country_country_San_Marino_182" >San Marino</option><option value="country_Sao_Tome_and_Principe_183" id="address_country_country_Sao_Tome_and_Principe_183" >Sao Tome and Principe (São Tomé e Príncipe)</option><option value="country_Saudi_Arabia_184" id="address_country_country_Saudi_Arabia_184" >Saudi Arabia (??????? ????????)</option><option value="country_Senegal_185" id="address_country_country_Senegal_185" >Senegal (Sénégal)</option><option value="country_Serbia_4503" id="address_country_country_Serbia_4503" >Serbia (??????)</option><option value="country_Seychelles_186" id="address_country_country_Seychelles_186" >Seychelles (Sesel)</option><option value="country_Sierra_Leone_187" id="address_country_country_Sierra_Leone_187" >Sierra Leone</option><option value="country_Singapore_188" id="address_country_country_Singapore_188" >Singapore (??? • Singapura • ???????????)</option><option value="country_Slovakia_189" id="address_country_country_Slovakia_189" >Slovakia (Slovensko)</option><option value="country_Slovenia_190" id="address_country_country_Slovenia_190" >Slovenia (Slovenija)</option><option value="country_Solomon_Islands_191" id="address_country_country_Solomon_Islands_191" >Solomon Islands</option><option value="country_Somalia_192" id="address_country_country_Somalia_192" >Somalia (Soomaaliya • ???????)</option><option value="country_South_Africa_193" id="address_country_country_South_Africa_193" >South Africa (Suid-Afrika)</option><option value="country_Spain_195" id="address_country_country_Spain_195" >Spain (España)</option><option value="country_Sri_Lanka_196" id="address_country_country_Sri_Lanka_196" >Sri Lanka (????? ????? • ??????)</option><option value="country_St__Helena_197" id="address_country_country_St__Helena_197" >St. Helena</option><option value="country_St__Pierre_and_Miquelon_198" id="address_country_country_St__Pierre_and_Miquelon_198" >St. Pierre and Miquelon</option><option value="country_Sudan_199" id="address_country_country_Sudan_199" >Sudan (???????)</option><option value="country_Suriname_200" id="address_country_country_Suriname_200" >Suriname</option><option value="country_Svalbard_and_Jan_Mayen_Islands_201" id="address_country_country_Svalbard_and_Jan_Mayen_Islands_201" >Svalbard and Jan Mayen Islands</option><option value="country_Swaziland_202" id="address_country_country_Swaziland_202" >Swaziland (eSwatini)</option><option value="country_Sweden_203" id="address_country_country_Sweden_203" >Sweden (Sverige)</option><option value="country_Switzerland_204" id="address_country_country_Switzerland_204" >Switzerland (Schweiz • Suisse • Svizzera • Svizra)</option><option value="country_Syrian_Arab_Republic_205" id="address_country_country_Syrian_Arab_Republic_205" >Syrian Arab Republic (??????)</option><option value="country_Taiwan_206" id="address_country_country_Taiwan_206" >Taiwan (?? • ??)</option><option value="country_Tajikistan_207" id="address_country_country_Tajikistan_207" >Tajikistan (??????????)</option><option value="country_Tanzania_208" id="address_country_country_Tanzania_208" >Tanzania</option><option value="country_Thailand_209" id="address_country_country_Thailand_209" >Thailand (?????????)</option><option value="country_Togo_210" id="address_country_country_Togo_210" >Togo</option><option value="country_Tokelau_211" id="address_country_country_Tokelau_211" >Tokelau</option><option value="country_Tonga_212" id="address_country_country_Tonga_212" >Tonga</option><option value="country_Trinidad_and_Tobago_213" id="address_country_country_Trinidad_and_Tobago_213" >Trinidad and Tobago</option><option value="country_Tunisia_214" id="address_country_country_Tunisia_214" >Tunisia (?????)</option><option value="country_Turkey_215" id="address_country_country_Turkey_215" >Turkey (Türkiye)</option><option value="country_Turkmenistan_216" id="address_country_country_Turkmenistan_216" >Turkmenistan (Türkmenistan)</option><option value="country_Turks_and_Caicos_Islands_217" id="address_country_country_Turks_and_Caicos_Islands_217" >Turks and Caicos Islands</option><option value="country_Tuvalu_218" id="address_country_country_Tuvalu_218" >Tuvalu</option><option value="country_Uganda_219" id="address_country_country_Uganda_219" >Uganda</option><option value="country_Ukraine_220" id="address_country_country_Ukraine_220" >Ukraine (???????)</option><option value="country_United_Arab_Emirates_221" id="address_country_country_United_Arab_Emirates_221" >United Arab Emirates (???????? ??????? ???????)</option><option value="country_United_Kingdom_222" id="address_country_country_United_Kingdom_222" >United Kingdom</option><option value="country_United_States_Minor_Outlying_Islands_224" id="address_country_country_United_States_Minor_Outlying_Islands_224" >United States Minor Outlying Islands</option><option value="country_United_States_of_America_223" id="address_country_country_United_States_of_America_223" >United States of America</option><option value="country_Uruguay_225" id="address_country_country_Uruguay_225" >Uruguay</option><option value="country_Uzbekistan_226" id="address_country_country_Uzbekistan_226" >Uzbekistan (O?zbekiston)</option><option value="country_Vanuatu_227" id="address_country_country_Vanuatu_227" >Vanuatu</option><option value="country_Vatican_City_State__Holy_See__228" id="address_country_country_Vatican_City_State__Holy_See__228" >Vatican City State (Vaticanum)</option><option value="country_Venezuela_229" id="address_country_country_Venezuela_229" >Venezuela</option><option value="country_Vietnam_230" id="address_country_country_Vietnam_230" >Vietnam (Vi?t Nam)</option><option value="country_Virgin_Islands__British__231" id="address_country_country_Virgin_Islands__British__231" >Virgin Islands (British)</option><option value="country_Virgin_Islands__U_S___232" id="address_country_country_Virgin_Islands__U_S___232" >Virgin Islands (U.S.)</option><option value="country_Wallis_and_Futuna_Islands_233" id="address_country_country_Wallis_and_Futuna_Islands_233" >Wallis and Futuna Islands</option><option value="country_Western_Sahara_234" id="address_country_country_Western_Sahara_234" >Western Sahara (??????? ???????)</option><option value="country_Yemen_235" id="address_country_country_Yemen_235" >Yemen (?????)</option><option value="country_Zaire_237" id="address_country_country_Zaire_237" >Zaire</option><option value="country_Zambia_238" id="address_country_country_Zambia_238" >Zambia</option><option value="country_Zimbabwe_239" id="address_country_country_Zimbabwe_239" >Zimbabwe</option></select> <span class="hikashop_field_required">*</span>		</div>
	</div>

	<div class="control-group hikashop_registration_required_info_line">
		<div class="controls">Fields marked with an asterisk (*) are required.</div>
	</div>
	<input type="hidden" name="data[register][id]" value="0" />
	<input type="hidden" name="data[register][gid]" value="0" />
	<div class="control-group">
		<div class="controls">
			<input type="submit" class="btn button hikashop_cart_input_button btn btn-primary" name="register" value="Register" onclick="var field=document.getElementById('hikashop_product_quantity_field_1'); document.hikashop_registration_form.submit(); return false;" id="hikashop_register_form_button"/>		</div>
	</div>
</fieldset>
		</fieldset>
	</div>
</form>
<!--  HikaShop Component powered by http://www.hikashop.com -->
	<!-- version Business : 2.2.2 [1310121420] -->
								</div>
	                        </div>
						</div>
                                                                    </div>
                                <div class="rt-grid-3 ">
                <div id="rt-sidebar-b">
                               <div class="rt-block bblogin">
           	<div class="module-surround">
	           		                	<div class="module-content">
	                		<form action="index.php/component/hikashop/" method="post" id="login-form" >
			<div class="pretext">
		<p>Login</p>
		</div>
		<fieldset class="userdata">
	<p id="form-login-username">
		<label for="modlgn-username">User Name</label>
		<input id="modlgn-username" type="text" name="username" class="inputbox"  size="18" />
	</p>
	<p id="form-login-password">
		<label for="modlgn-passwd">Password</label>
		<input id="modlgn-passwd" type="password" name="password" class="inputbox" size="18"  />
	</p>
		<p id="form-login-secretkey">
			<label for="modlgn-secretkey">Secret Key <span class="icon-help hasTooltip" title="If you have enabled two factor authentication in your user account please enter your secret key. If you do not know what this means, you can leave this field blank."></span></label> 

			<input id="modlgn-secretkey" type="text" name="secretkey" class="inputbox" tabindex="0" size="18" placeholder="Secret Key" />

	</p>
			<p id="form-login-remember">
		<label for="modlgn-remember">Remember Me</label>
		<input id="modlgn-remember" type="checkbox" name="remember" class="inputbox" value="yes"/>
	</p>
		<input type="submit" name="Submit" class="button" value="Log in" />
	<input type="hidden" name="option" value="com_users" />
	<input type="hidden" name="task" value="user.login" />
	<input type="hidden" name="return" value="aW5kZXgucGhwP29wdGlvbj1jb21faGlrYXNob3AmY3RybD11c2VyJnRhc2s9Zm9ybQ==" />
	<input type="hidden" name="223d23609ec97540f269ee8bee26e4f6" value="1" />	</fieldset>
	<ul>
		<li>
			<a href="index.php/reset-my-password">
			Forgot your password?</a>
		</li>
		<li>
			<a href="index.php/remind-me">
			Forgot your username?</a>
		</li>
				<li>
			<a href="index.php/new-registration">
				Create an account</a>
		</li>
			</ul>
	</form>
	                	</div>
                	</div>
           </div>
	
                </div>
            </div>

Last edit: 10 years 9 months ago by Jerome.

Please Log in or Create an account to join the conversation.

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #142603

Hi Eliot,
I think I understand now what you mean. I can see that when I login via the Hikashop login everythings sems fine.

But how do I create just a simple Login ( username and password and submit button) like the Joomla login I have done to replace the login modules I have on the site now with logins using Hikashop?

Can I do it through the custom HTML module?

Thanks again for your time

Regards
Jennifer

Please Log in or Create an account to join the conversation.

  • Posts: 2334
  • Thank you received: 403
10 years 9 months ago #142631

Hi there,

Now I am the one who's a bit lost. Hikashop doesn't have a login module, we use the joomla one.
However there is a login page in the checkout process and you can edit this one through our view system in Display>Views and by typing login. You should be able to edit the code here and add what you want.

The following user(s) said Thank You: jenbain

Please Log in or Create an account to join the conversation.

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #142785

Hi Eric,

Then' is there, or how do I fix the issue so that when they login via Joomla login it all works? I would rather leave the login as is if there is a fix for the problem.

Kind regards
Jennifer

Please Log in or Create an account to join the conversation.

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #142788

Hi Eric,

Thanks for your time, and pointing me in the right direction to find out what was happening. I have located the solution through another Topic, being new to Hikashop and Joomla I did not initally find this as I wasn't clear about what I was looking for.

So again many thanks for your time and as I said, getting my focus in the right direct.

I have made the change in the php code and it now seems to be working, will test a bit more, but all good so far.

Kind regards
Jennifer

<h2>Solution</h2>
in -> plugins/user/joomla/joomla.php

Remove: if ($userPluginParams->get('strong_passwords') == 1)
and replace with: if ($userPluginParams->get('strong_passwords', 1) == 1)

<b>Sourced from:</b> www.hikashop.com/forum/23-market-how-to/...stration.html#133836

Please Log in or Create an account to join the conversation.

  • Posts: 12953
  • Thank you received: 1778
10 years 9 months ago #142814

Thanks for your feedback :).

The following user(s) said Thank You: jenbain

Please Log in or Create an account to join the conversation.

  • Posts: 46
  • Thank you received: 2
10 years 9 months ago #143055

Hi Mohamed and Eric,

I am wondering if you can help with another issue, I posted the topic at: www.hikashop.com/forum/checkout/865642-s...sue-in-checkout.html but have not had any response as yet.

I understand, (or think I understand) that the changes need to happen in the php code, I have tried to make changes in the order/show.php without success. I am very new to php as well, so I am probably doing the wrong thing....

I am sure this is something simple, but if you could possible guide me to where I need to make these changes for the sub total issue so that it shows on the email receipt they receive.

I will keep looking but any help really would be appreciated.

Kind regards
Jennifer

Please Log in or Create an account to join the conversation.

  • Posts: 26158
  • Thank you received: 4028
  • MODERATOR
10 years 9 months ago #143069

Hi,

Who's Eric ?

Please do not double-post for the same problem.
The other thread is still open an someone of the support team will answer it.
Asking for the same thing in another thread will not help us to provide a good support, specially if we have to split our forces to answer several time to the same question of the same person.

Thanks for your understanding.


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

Time to create page: 0.099 seconds
Powered by Kunena Forum