vinoalvino Posted February 15, 2009 Share Posted February 15, 2009 Avevo questo simpatico modulo installato nella versione precedente - consente di inviare una mail dal cliente al negozio per richiedere informazioni su di un prodotto - che non funzionava con la 1.1. L'ho sistemato e lo allego. contactproduct_03.zip Link to comment Share on other sites More sharing options...
Ehinarr Posted February 15, 2009 Share Posted February 15, 2009 Semplice e molto utile. Tante grazie. Link to comment Share on other sites More sharing options...
cerberus22 Posted February 15, 2009 Share Posted February 15, 2009 Very Nice,Thankscerberus22 Link to comment Share on other sites More sharing options...
RuletZ Posted February 15, 2009 Share Posted February 15, 2009 Grazie per averlo adattato alla versione 1.1 Link to comment Share on other sites More sharing options...
jolvil Posted February 15, 2009 Share Posted February 15, 2009 did you modify this module?http://julien.breux.free.fr/prestashop/ Link to comment Share on other sites More sharing options...
jolvil Posted February 16, 2009 Share Posted February 16, 2009 I've tested with v1.1, easy to install and woks perfectly.One thing could be better: to have reference of product with title on email.This way you can be sure about wich product customer want to talk about.Merci d'avoir laissé la traduction française, comme cela il est directement utilisable pour une boutique en français. :coolsmile: Link to comment Share on other sites More sharing options...
lehangart Posted February 17, 2009 Share Posted February 17, 2009 It's a great module...But it will be better if we can put an image of the product and a back link to the product...Like the module "send to a freind".I have try to change it but it doesn't work;If you can help me it will be very nice! Link to comment Share on other sites More sharing options...
vinoalvino Posted February 17, 2009 Author Share Posted February 17, 2009 Nuova versione (vedi primo topic).1) se l'utente è loggato non chiede l'email ma mostra la sua (disabled)2) in fondo all'email compare il link alla pagina prodottoSpero siate felici :-P Link to comment Share on other sites More sharing options...
jolvil Posted February 17, 2009 Share Posted February 17, 2009 link in email doesnt work for me:example:res://ieframe.dll/syntax.htm#/boutique/decoration-asiatique/121-dragon-chinois-decoration-asiatique.htmlhowever, very good idea !on email product link is Voir le produit it should be: Voir le produit a return to product page could be added on "message sent" page Link to comment Share on other sites More sharing options...
Fabrice Posted February 20, 2009 Share Posted February 20, 2009 hi !does not seem to work with last SVN version.is an update planned for the next PS 1.2 ?tks. :-) Link to comment Share on other sites More sharing options...
jolvil Posted February 20, 2009 Share Posted February 20, 2009 To resolve link problem (I use PS 1.1)I've added my shop url (http://www.my-shop.com- change with your url) in code in contactproduct.php and now the product link on email is OKit works only for my shop but it's not clean code for every body( I don't know php or smarty)just insert your shop url.line 104 $mail_value = Configuration::get('PS_CONTACT_PRODUCT'); $message .= ' '.$this->l('Voir le produit').''; if (Mail::Send(intval($cookie->id_lang), 'contact', Tools::getValue('subject'), array('{email}' => $_POST['from'], '{message}' => stripslashes($message)), $mail_value)) There is another module quite similar herehttp://www.prestashop.com/forums/viewthread/10915/modules/additional_question_module Link to comment Share on other sites More sharing options...
Presta-TR Posted February 22, 2009 Share Posted February 22, 2009 not work in v1.1 this and "Additional question module" please give me an solve Link to comment Share on other sites More sharing options...
lehangart Posted February 25, 2009 Share Posted February 25, 2009 Hello,Have a look to http://www.prestashop.com/forums/viewthread/10915/P45/modules/additional_question_module Link to comment Share on other sites More sharing options...
Akshan Posted February 26, 2009 Share Posted February 26, 2009 Very Nice,Thanks Link to comment Share on other sites More sharing options...
Mephivio Posted March 31, 2009 Share Posted March 31, 2009 hi,i would like to add more fields in the form to do an extended version.so, that's my add to contactproduct.tpl : > <form action="{$request_uri}" method="post" class="std"> {l s='Send a message' mod='contactproduct'} {l s='Subject' mod='contactproduct'}: <input type="text" id="subject" name="subject" style="width: 280px;" value="{$product}" /> {l s='Firm' mod='contactproduct'}: <input type="text" id="firm" name="firm" style="width: 280px;" value="{if isset($smarty.post.firm)}{$smarty.post.firm|escape:'htmlall'|stripslashes}{/if}" /> {l s='Name' mod='contactproduct'}: <input type="text" id="name" name="name" style="width: 280px;" value="{if isset($smarty.post.name)}{$smarty.post.name|escape:'htmlall'|stripslashes}{/if}" /> {l s='Surname' mod='contactproduct'}: <input type="text" id="surname" name="surname" style="width: 280px;" value="{if isset($smarty.post.surname)}{$smarty.post.surname|escape:'htmlall'|stripslashes}{/if}" /> {l s='Address' mod='contactproduct'}: <input type="text" id="address" name="address" style="width: 280px;" value="{if isset($smarty.post.address)}{$smarty.post.address|escape:'htmlall'|stripslashes}{/if}" /> {l s='Postcode' mod='contactproduct'}: <input type="text" id="postcode" name="postcode" style="width: 280px;" value="{if isset($smarty.post.postcode)}{$smarty.post.postcode|escape:'htmlall'|stripslashes}{/if}" /> {l s='Town' mod='contactproduct'}: <input type="text" id="town" name="town" style="width: 280px;" value="{if isset($smarty.post.town)}{$smarty.post.town|escape:'htmlall'|stripslashes}{/if}" /> {l s='E-mail address' mod='contactproduct'}: {if $id_customer > 0} <input type="text" name="from_customer" style="width: 280px;" value="{$email_customer}" disabled="disabled" /> <input type="hidden" id="email" name="from" value="{$email_customer}" /> {else} <input type="text" id="email" name="from" style="width: 280px;" value="{if isset($smarty.post.from)}{$smarty.post.from|escape:'htmlall'|stripslashes}{/if}" /> {/if} {l s='Phone' mod='contactproduct'}: <input type="text" id="phone" name="phone" style="width: 280px;" value="{if isset($smarty.post.phone)}{$smarty.post.phone|escape:'htmlall'|stripslashes}{/if}" /> {l s='Message' mod='contactproduct'}: <textarea id="message" name="message" rows="7" cols="41">{if isset($smarty.post.message)}{$smarty.post.message|escape:'htmlall'|stripslashes}{/if}</textarea> <input type="hidden" name="goToProduct" value="{$goToProduct}" /> <input type="submit" name="submitMessage" id="submitMessage" value="{l s='Send' mod='contactproduct'}" class="button_large" /> </form> {/if} </pre> <ul> {l s='Back to' mod='contactproduct'} {$product->name} </ul> Cool.. the forms appears well.but how to modify contactproduct.php to send me the additionnal details ?i try different adds but i receive every time only the default fields on this module ...Thanks for your help !!!ps: i add in the TPL file a gotoproduct witch works well now Link to comment Share on other sites More sharing options...
ilsaro Posted April 9, 2009 Share Posted April 9, 2009 io non riesco a farlo funzionare......non mi appere il link Link to comment Share on other sites More sharing options...
vinoalvino Posted April 9, 2009 Author Share Posted April 9, 2009 io non riesco a farlo funzionare......non mi appere il link Che versione di prestashop usi? Link to comment Share on other sites More sharing options...
ilsaro Posted April 9, 2009 Share Posted April 9, 2009 l ultima versione, scaricata stamattina Link to comment Share on other sites More sharing options...
ilsaro Posted April 9, 2009 Share Posted April 9, 2009 inutile non riesco... Link to comment Share on other sites More sharing options...
Germanoufo Posted April 9, 2009 Share Posted April 9, 2009 I permessi sulla cartella ? se hai caricato la cartella via FTP sicuramente non ha i permessi giusti Ciao ;-) Link to comment Share on other sites More sharing options...
paman Posted April 9, 2009 Share Posted April 9, 2009 CiaoDove lo cerchi ? Link to comment Share on other sites More sharing options...
Germanoufo Posted April 9, 2009 Share Posted April 9, 2009 Bravo paman potrebbe anche essere che vada nel form contatti e non premere il link dal prodotto a me era sfuggita l' idea , mi ero posto un problema permessi o script Ciao ;-) Link to comment Share on other sites More sharing options...
paman Posted April 9, 2009 Share Posted April 9, 2009 Grazie GermanoPenso che a volte, siamo portati a ragionare in modo complicato.Un Caro Saluto ;-) Link to comment Share on other sites More sharing options...
havanaclub Posted April 9, 2009 Share Posted April 9, 2009 ho provato il modulo e la voce esce ma il server mi da questo bell'errore..Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.More information about this error may be available in the server error log.Ho visto anche nel log del server e non ho ancora errorri riguardanti questo modulo Link to comment Share on other sites More sharing options...
ilsaro Posted April 9, 2009 Share Posted April 9, 2009 lo cerco nel posto giusto sotto alla foto del singolo prodotto,la cartella (contactproduct) ha i permessi settati a 777 ma ancora non vedo il link... Link to comment Share on other sites More sharing options...
paman Posted April 9, 2009 Share Posted April 9, 2009 lo cerco nel posto giusto sotto alla foto del singolo prodotto,la cartella (contactproduct) ha i permessi settati a 777 ma ancora non vedo il link... CiaoTi faccio una domanda stupida ma il modulo lo hai installato ? dal BO -Moduli- giusto? Link to comment Share on other sites More sharing options...
ilsaro Posted April 9, 2009 Share Posted April 9, 2009 il modulo è questo giusto?"Informazioni sul prodotto v0.3Gli utenti possono contattarvi per chiedere ulteriori informazioni su un prodotto"se si mi dice installato con la spunta verde. Link to comment Share on other sites More sharing options...
paman Posted April 9, 2009 Share Posted April 9, 2009 GiustoGuarda inizia ad essere un vero mistero dai anche uno sguardo qui, sperando possa esserti utilehttp://www.prestashop.com/forums/viewthread/10915/P45/modules/additional_question_moduleciao Link to comment Share on other sites More sharing options...
paman Posted April 9, 2009 Share Posted April 9, 2009 CiaoUn altra domanda il tema che utilizzi e quello di default, o ne stai utilizzando qualcun altro ? Link to comment Share on other sites More sharing options...
ilsaro Posted April 9, 2009 Share Posted April 9, 2009 utilizzo quello di default.domani provo a cancellare il modulo, a scaricarlo nuovamente e ad installarlo da zero.poi vi faccio sapere. ora sono troppo cotto.sto prestashop mi ha preso un casino, non riesco a fare a meno di popolare il catalogo di prova! Link to comment Share on other sites More sharing options...
twindad Posted April 9, 2009 Share Posted April 9, 2009 salve.a me funge tutto benone;unico problema nella mail:in basso ho il link alla scheda del prodotto (go to product) solo che non linka al prodotto giusto,bensì al primo prodotto del catalogo... Link to comment Share on other sites More sharing options...
ilsaro Posted April 10, 2009 Share Posted April 10, 2009 dopo aver installato nuovamente funzionasolo anche a me non funziona il link, proprio non si apre. Link to comment Share on other sites More sharing options...
Germanoufo Posted April 10, 2009 Share Posted April 10, 2009 Hai lo shop on line che vediamo ?Ciao ;-) Link to comment Share on other sites More sharing options...
ilsaro Posted April 10, 2009 Share Posted April 10, 2009 non funziona il link che si trova nella mail che mi invia il sito.ciao Link to comment Share on other sites More sharing options...
disarci Posted April 10, 2009 Share Posted April 10, 2009 Ilsaro:mandaci qualche cosa, come possiamo capire cosa non funziona?giraci la mail....il sito....l'errore....qualche piccolo indizio.........la caccia alle uova nel giardino non è ancora iniziata!;-) Link to comment Share on other sites More sharing options...
Germanoufo Posted April 10, 2009 Share Posted April 10, 2009 Almeno vinoalvino offriva una ferrari per la soluzionequì dobbiamo fare la caccia all' uovo A parte gli scherzi postate il link che vediamo ( devo dire che non ho poteri paranormali per risolvere il problema )Ciao ;-) Link to comment Share on other sites More sharing options...
ilsaro Posted April 10, 2009 Share Posted April 10, 2009 ecco qua la mail Ciao {firstname} {lastname}, Hai ricevuto un messaggio da un cliente tramite il negozio: popcornshop Dettagli del messaggio: Indirizzo e-mail: [email protected] Messaggio: prova Go to product > <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Messaggio da xxxxx</title> </head> <body> </pre> <table style="font-family:Verdana, sans-serif;font-size:11px;color:#374953;width:550px;"> Messaggio dal xxxxxxxx Indirizzo e-mail: [email protected] Messaggio: prova class="bold">Go to product xxxxx powered by PrestaShop™ </table> <br><br></body><br></html><br le xxxx sono al posto del nome del mio sito.dove si trovano i testi delle mail? Link to comment Share on other sites More sharing options...
twindad Posted April 10, 2009 Share Posted April 10, 2009 [RISOLTO]Scusate,ho risolto.non mi ero accorto che era un problema di seo:in pratica non avevo notato che duplicando gli oggetti mi si duplicassero anche gli url amici.in realtà ho molti prodotti con url simili,ecco perchè pensavo il link puntasse sempre allo stesso.offtopic vi chiedo : sapete se c è un modo per evitare questo problema?al cambio del nome del prodotto dovrebbe cambiare anche l url amico.sul sito sono tutti occhiali,quindi è comodo duplicare un rayban cambiando solo la sigla la foto e alcuni dettagli...ora che me ne sono accorto dovrò girarmi tutti gli articoli per sistemare la cosa.scusate ancora,ciao Link to comment Share on other sites More sharing options...
paman Posted April 10, 2009 Share Posted April 10, 2009 CiaoFacciamo in modo per chi dovesse avere il tuo stesso problema, di trovare subito la soluzione leggendo nel forum, quindi metti [RISOLTO] prima del titolo del post. Grazie Link to comment Share on other sites More sharing options...
havanaclub Posted April 10, 2009 Share Posted April 10, 2009 prima di abbandonare il post nessuno sa dirmi perchè il mio server non accetta questo modulo dandomi il seguente errore ? Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.More information about this error may be available in the server error log. L'error log non mi riporta nessun errore.. Link to comment Share on other sites More sharing options...
paman Posted April 10, 2009 Share Posted April 10, 2009 Guarda quihttp://www.prestashop.com/forums/viewthread/14769/installation_configuration_et_mise_a_jour/resolu_internal_server_error_pour_blocs__listes_cadeaux__parrainages__points_de_fidelite__envoye_a_un_amiCiao Link to comment Share on other sites More sharing options...
havanaclub Posted April 10, 2009 Share Posted April 10, 2009 Grazie. Era questo il problema. Avevo impostato i permessi come sempre a 777 e innvece vanno a 755 come indicato nel link superiore.RISOLTO Link to comment Share on other sites More sharing options...
www.nextland.it vendita computer trento Posted October 9, 2010 Share Posted October 9, 2010 risolto con il modulo.. graziehttp://www.nextland.ithttp://www.prezzoonline.ithttp://www.caldonazzo.net Link to comment Share on other sites More sharing options...
snagadeal Posted February 22, 2011 Share Posted February 22, 2011 tried it with prestashop 1.4 and it doesn't work the contact page shows blank. anybody know how to upgrade it? Link to comment Share on other sites More sharing options...
Car Vision UK Posted August 7, 2011 Share Posted August 7, 2011 Yes I've had the same resault. Will not work with 1.4.4 Blank page:? Do we need to recode the Contactproduct.tpl Could this do with the Smarty.post.message? Link to comment Share on other sites More sharing options...
VAN(ENZO) Posted August 28, 2011 Share Posted August 28, 2011 Avevo questo simpatico modulo installato nella versione precedente - consente di inviare una mail dal cliente al negozio per richiedere informazioni su di un prodotto - che non funzionava con la 1.1. L'ho sistemato e lo allego. Davvero utilissimo Link to comment Share on other sites More sharing options...
natasha80 Posted September 7, 2011 Share Posted September 7, 2011 I installed it in PS 1.4.4.0 and when it tries to load the contact page it doesn't render the entire page modules/contactproduct/contactproduct-form.php?id_product=10 how can be fixed? Link to comment Share on other sites More sharing options...
laurent75014 Posted September 15, 2011 Share Posted September 15, 2011 Hi, Have you find solution for PS 1.4.4? Thanks Link to comment Share on other sites More sharing options...
PrincesseBaboum Posted January 3, 2012 Share Posted January 3, 2012 Same question here, this module seems usefull to me but doesn't work on v1.4.4.... Does someone have a fix ? Link to comment Share on other sites More sharing options...
viar Posted July 17, 2012 Share Posted July 17, 2012 the only solutions to use this module in ps 1.4 is upgrading the smarty Link to comment Share on other sites More sharing options...
Papalla Posted July 17, 2012 Share Posted July 17, 2012 Ciao, stavo cercando proprio questo modulo. L'ho scaricato e installato su Prestashop 1.4.8.2. Appare la scritta "Richiedi informazioni" correttamente ma, cliccata, va ad una pagina bianca. Link to comment Share on other sites More sharing options...
sandadi Posted July 22, 2012 Share Posted July 22, 2012 Ciao Un altra domanda il tema che utilizzi e quello di default, o ne stai utilizzando qualcun altro ? ciao io sto usando un'altro modulo e quando clicco su "Richiedi informazioni" mi da una pagina dello shop vuota... puoi aiutarmi? Link to comment Share on other sites More sharing options...
marissa_bari Posted November 23, 2014 Share Posted November 23, 2014 tried it with prestashop 1.4 and it doesn't work the contact page shows blank. anybody know how to upgrade it? ho lo stesso problema, qualcuno può aiutarci? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now