Jump to content

carmy

Members
  • Posts

    30
  • Joined

  • Last visited

Profile Information

  • Activity
    Freelancer

carmy's Achievements

Newbie

Newbie (1/14)

3

Reputation

  1. Thank you!!! For me it has solved the problem
  2. Salve io ho risolto utilizzando una regola css per nascondere SIRET e APE. Versione Prestashop 1.6.1.6 - Tema default-bootstrap Aprire il file themes/tuotema/authentication.tpl Per nascondere SIRET, cambiare questo codice in torno alla riga 532: <p class="form-group"> <label for="siret">{l s='SIRET'}</label> <input type="text" class="form-control" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret}{/if}" /> </p> Con questo codice: <p class="form-group" style="display:none;"> <label for="siret">{l s='SIRET'}</label> <input type="text" class="form-control" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret}{/if}" /> </p> Per nascondere APE, cambiare questo codice in torno alla riga 536 <p class="form-group"> <label for="ape">{l s='APE'}</label> <input type="text" class="form-control" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape}{/if}" /> </p> Con questo codice: <p class="form-group" style="display:none;"> <label for="ape">{l s='APE'}</label> <input type="text" class="form-control" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape}{/if}" /> </p> Inoltre per nascondere SIRET E APE anche dalla sezione "I MIEI DATI PERSONALI" dell'utente. Apri il file themes/tuotema/identity.tpl Per nascondere SIRET, cambiare questo codice in torno alla riga 181: <div class="form-group"> <label for="siret">{l s='SIRET'}</label> <input type="text" class="form-control" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret}{/if}" /> </div> Con questo codice: <div class="form-group" style="display:none;"> <label for="siret">{l s='SIRET'}</label> <input type="text" class="form-control" id="siret" name="siret" value="{if isset($smarty.post.siret)}{$smarty.post.siret}{/if}" /> </div> Per nascondere APE, cambiare questo codice in torno alla riga 185 <div class="form-group"> <label for="ape">{l s='APE'}</label> <input type="text" class="form-control" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape}{/if}" /> </div> Con questo codice: <div class="form-group" style="display:none;"> <label for="ape">{l s='APE'}</label> <input type="text" class="form-control" id="ape" name="ape" value="{if isset($smarty.post.ape)}{$smarty.post.ape}{/if}" /> </div> In pratica ho inserito questa regola css - style="display:none;" - nel tag <p> nel file authentication.tpl e nel tag <div> nel file identity.tpl Spero che possa aiutare qualcuno.
  3. Thank you navodyc4! It worked for me! Prestashop version 1.6.0.14
  4. Hello everyone, I hope I have posted in the right place. Prestashop Version: 1.6.0.14 Social Sharing Module Version: 1.4.0 Facebook share button to share the product image only when you have made three clicks on the button. It 'strange that must click at least three times to see the image in the dialog box and Facebook to share the product. How can I fix this strange behavior? This is the site: shop2.verascalia.com Thank you
  5. Hello, I installed version v3.10.2 module Paypal Prestashop version 1.6.0.14 Not having installed SSL in my shop, I upgraded to the latest version module Paypal. We hope well.
  6. My shop does not use SSL, I have to do updates anyway?
  7. Grazie Mille. Ho risolto grazie a cocothecat http://www.prestashop.com/forums/topic/234302-increase-the-price-based-on-the-quantity/ Alla fine ho creato delle regole prezzo specifico, che si trova scrollando la pagina che si trova pagina prezzo.
  8. Hi all, I installed version 1.5.3.1 Prestashop, I was doing a test purchase: Step 1 = OK, 2 = OK step, step 3 = OK, 4 = phase NO OK In step 4 does not display the selected delivery method, and does not even appear on "Next" button. I did several tests, but I can not understand what determines this problem. I am attaching the screenshot. Someone have any idea? Thanks in advance
  9. I also have this problem, I checked the various configurations all seems ok ..
×
×
  • Create New...