Jump to content

Campo "Azienda" obbligatorio in MULTISHOP


Recommended Posts

Buongiorno a tutti

ho un problema con questo campo e non riesco a venirne a capo..... spero che qualcuno possa aiutarmi!

ho realizzato un negozio con multishop, uno al dettaglio e l'altro per acquisti all'ingrosso.

 

Nella registrazione del negozio all'ingrosso vorrei che il campo azienda fosse obbligatorio, l'unico problema è che se attivo il campo obbligatorio nel BO viene richiesto anche nel negozio al dettaglio...

ho provato a modificare i tpl del template del negozio all'ingrosso, ma con scarsi risultati.

 

Qualcuno ha un'idea di come risolvere??

 

confido nel vostro aiuto.....

Link to comment
Share on other sites

risolto in parte con required modificando authentication.tpl del template lo posto nel caso qualcuno ha lo stesso problema:

	{if $b2b_enable}
	
	<fieldset class="account_creation">
		<h3>{l s='Your company information'}</h3>
		<p class="required text">
			<label for="">{l s='Company'} <sup>*</sup></label>
			<input type="text" class="text" id="company" name="company" required value="{if isset($smarty.post.company)}{$smarty.post.company}{/if}" />
		</p>

il problema è che non funziona con Internet Explorer, se qualcuno ha qualche suggerimento ben venga...

 

 

in più ho reso visibile sempre il campo iva sempre nel file authentication.tpl:

	function vat_number()
	{
		//if (($('#company').length) && ($('#company').val() != '')) 
			$('#vat_number').show();
		//else
		//	$('#vat_number').hide();
	}
Edited by walchie (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...