Jump to content

Andrew66

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Activity
    Freelancer

Andrew66's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Ciao, io non ho ancora risolto, non so quale è il file dove intervenire per modificare il codice, è un problema indipendente dal browser usato. Ho visto che il tuo è un difetto diverso dal mio, mi spiace ma non so esserti d'aiuto. Un saluto.
  2. Scusate, potreste darmi una mano, non riesco a far funzionare il messaggio di errore con il pulsante check non spuntato, questo il codice della pagina, dove sbaglio? {* * 2007-2012 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2012 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} [color=#ff0000]<script type="text/javascript"> function DG_valida_ContactForm ( ) { /* Funzione aggiunta qui per farla caricare nell'header di ogni pagina serve per convalida privacy aggiunta nel modulo contattaci vedi anche modifiche fatte a ...themes/prestashop/contact-form.tpl */ valid = true; if ( document.DG_FormContactForm.DG_terms.checked == false ) { alert ( "Si prega di leggere ed accettare l'Informativa Privacy, vistando il quadratino relativo.\n\nPlease read and check the Privacy Terms box." ); valid = false; } return valid; } /* DG_ fine funziona aggiunta */ </script>[/color] {capture name=path}{l s='Contact'}{/capture} {include file="$tpl_dir./breadcrumb.tpl"} <h1>{l s='Customer Service'} - {if isset($customerThread) && $customerThread}{l s='Your reply'}{else}{l s='Contact us'}{/if}</h1> {if isset($confirmation)} <p>{l s='Your message has been successfully sent to our team.'}</p> <ul class="footer_links"> <li><a href="{$base_dir}"><img class="icon" alt="" src="{$img_dir}icon/home.gif"/></a><a href="{$base_dir}">{l s='Home'}</a></li> </ul> {elseif isset($alreadySent)} <p>{l s='Your message has already been sent.'}</p> <ul class="footer_links"> <li><a href="{$base_dir}"><img class="icon" alt="" src="{$img_dir}icon/home.gif"/></a><a href="{$base_dir}">{l s='Home'}</a></li> </ul> {else} <p class="bold">{l s='For questions about an order or for more information about our products'}.</p> {include file="$tpl_dir./errors.tpl"} <form action="{$request_uri|escape:'htmlall':'UTF-8'}" method="post" class="std" enctype="multipart/form-data"> [color=#ff0000]<form name="DG_FormContactForm" action="{$request_uri|escape:'htmlall':'UTF-8'}" method="post" class="std" enctype="multipart/form-data">[/color] <fieldset> <h3>{l s='Send a message'}</h3> <p class="select"> <label for="id_contact">{l s='Subject Heading'}</label> {if isset($customerThread.id_contact)} {foreach from=$contacts item=contact} {if $contact.id_contact == $customerThread.id_contact} <input type="text" id="contact_name" name="contact_name" value="{$contact.name|escape:'htmlall':'UTF-8'}" readonly="readonly" /> <input type="hidden" name="id_contact" value="{$contact.id_contact}" /> {/if} {/foreach} </p> {else} <select id="id_contact" name="id_contact" onchange="showElemFromSelect('id_contact', 'desc_contact')"> <option value="0">{l s='-- Choose --'}</option> {foreach from=$contacts item=contact} <option value="{$contact.id_contact|intval}" {if isset($smarty.post.id_contact) && $smarty.post.id_contact == $contact.id_contact}selected="selected"{/if}>{$contact.name|escape:'htmlall':'UTF-8'}</option> {/foreach} </select> </p> <p id="desc_contact0" class="desc_contact"> </p> {foreach from=$contacts item=contact} <p id="desc_contact{$contact.id_contact|intval}" class="desc_contact" style="display:none;"> {$contact.description|escape:'htmlall':'UTF-8'} </p> {/foreach} {/if} <p class="text"> <label for="email">{l s='E-mail address'}</label> {if isset($customerThread.email)} <input type="text" id="email" name="from" value="{$customerThread.email|escape:'htmlall':'UTF-8'}" readonly="readonly" /> {else} <input type="text" id="email" name="from" value="{$email|escape:'htmlall':'UTF-8'}" /> {/if} </p> {if !$PS_CATALOG_MODE} {if (!isset($customerThread.id_order) || $customerThread.id_order > 0)} <p class="text select"> <label for="id_order">{l s='Order Reference'}</label> {if !isset($customerThread.id_order) && isset($isLogged) && $isLogged == 1} <select name="id_order" > <option value="0">{l s='-- Choose --'}</option> {foreach from=$orderList item=order} <option value="{$order.value|intval}" {if $order.selected|intval}selected="selected"{/if}>{$order.label|escape:'htmlall':'UTF-8'}</option> {/foreach} </select> {elseif !isset($customerThread.id_order) && !isset($isLogged)} <input type="text" name="id_order" id="id_order" value="{if isset($customerThread.id_order) && $customerThread.id_order > 0}{$customerThread.id_order|intval}{else}{if isset($smarty.post.id_order)}{$smarty.post.id_order|intval}{/if}{/if}" /> {elseif $customerThread.id_order > 0} <input type="text" name="id_order" id="id_order" value="{$customerThread.id_order|intval}" readonly="readonly" /> {/if} </p> {/if} {if isset($isLogged) && $isLogged} <p class="text select"> <label for="id_product">{l s='Product'}</label> {if !isset($customerThread.id_product)} {foreach from=$orderedProductList key=id_order item=products name=products} <select name="id_product" id="{$id_order}_order_products" class="product_select" style="width:300px;{if !$smarty.foreach.products.first} display:none; {/if}" {if !$smarty.foreach.products.first}disabled="disabled" {/if}> <option value="0">{l s='-- Choose --'}</option> {foreach from=$products item=product} <option value="{$product.value|intval}">{$product.label|escape:'htmlall':'UTF-8'}</option> {/foreach} </select> {/foreach} {elseif $customerThread.id_product > 0} <input type="text" name="id_product" id="id_product" value="{$customerThread.id_product|intval}" readonly="readonly" /> {/if} </p> {/if} {/if} {if $fileupload == 1} <p class="text"> <label for="fileUpload">{l s='Attach File'}</label> <input type="hidden" name="MAX_FILE_SIZE" value="2000000" /> <input type="file" name="fileUpload" id="fileUpload" /> </p> {/if} <p class="textarea"> <label for="message">{l s='Message'}</label> <textarea id="message" name="message" rows="15" cols="10">{if isset($message)}{$message|escape:'htmlall':'UTF-8'|stripslashes}{/if}</textarea> </p> [color=#ff0000] <!-- aggiunto campo checkbox obbligatorio --> <p class="check-privacy">Dichiaro di aver letto ed accetto l'Informativa sulla Privacy <a href="{$base_dir}cms.php?id_cms=6&id_lang=5" onclick="window.open(this.href); return false;" ><br />(Leggi l'informativa sulla pivacy)</a> <br /></p> <p class="check"><input type="checkbox" name="DG_terms" value="No"/> <br /> </p> <p class="submit"> <input type="submit" name="submitMessage" id="submitMessage" value="{l s='Send'}" class="button_large" onclick="return DG_valida_ContactForm(); $(this).hide();" /> </p>[/color] </fieldset> </form> {/if} Ringrazio anticipatamente, Andrea.
  3. Salve a tutti, qualcuno sa come mandare a capo il testo delle combinazioni del prodotto in sintesi del carrello > riepilogo > descrizione. Trovo che così, in linea una a fianco all'altra, risultino confuse. Allego un’immagine di spiegazione. Grazie infinite. PrestaShop™ 1.5.3.1 tema di default.
  4. Puoi anche andare su Preferenze > Prodotti > Pagina prodotto e spuntare "No" su "Visualizza il tasto "add to cart" quando i prodotti hanno attributi" (Visualizza o nascondi il tasto "add to cart" nella pagina delle categorie per obbligare gli utenti a vedere i dettagli).
  5. Ciao KilluaFein, sono riuscito ad installarlo, grazie dell'aiuto!
  6. Rinominata gestpay, ma ora da questo messaggio: 2 errori The module Gestpay you uploaded is not a module The module pax_global_header you uploaded is not a module Non capisco.
  7. Ciao, il file zip che ho scaricato si chiama PrestaGestpay-0.6.3.zip, dentro la cartella si chiama PrestaGestpay-0.6.3, devo rinominarla? Grazie per l'aiuto.
  8. Salve a tutti, sono novellino di Prestashop e quindi non so se sbaglio qualche cosa nell'installazione, questo il problema: ho scaricato la versione 0.6.1, ma quando clicco su "Carica il modulo" di Prestashop mi da "fatal error" e non va avanti con l'installazione. Dove sbaglio, mi potete aiutare? Grazie infinite, Andrea.
×
×
  • Create New...