Jump to content

Contatto whatsapp con un click!


cyber

Recommended Posts

Salve se volete contattare il cliente nel vostro ordine direttamente dal computer su whatsapp con un click, vi mostro come fare, la versione che sto utilizzando e la 1.6.1.x

 

per prima cosa a noi interessa modificare il file view.tpl si trova in root/prestashop/admin/themes/default/template/controllers/orders/helpers/view/view.tpl

 

riga 709 inserire questo codice : 

 

{displayAddressDetail address=$addresses.delivery newLine='<br />'}
                                            {if $addresses.delivery->other}
                                                <hr />{$addresses.delivery->other}<br />
                                            {/if}
                                            <p><label>{l s='whatsapp'}</label><a href="https://api.whatsapp.com/send?phone=39{$addresses.delivery->phone_mobile}" target="_blank"> {$addresses.delivery->phone_mobile}</a><br />

 

ordine.jpg

Edited by cyber
inserito una foto (see edit history)
Link to comment
Share on other sites

Ovviamente il phone_mobile e dedicato a chi inserisce i cellulari vediamo di analizzare come ho fatto

 

<p><label>{l s='whatsapp'}</label><a href="https://api.whatsapp.com/send?phone=39{$addresses.delivery->phone_mobile}" target="_blank"> {$addresses.delivery->phone_mobile}</a><br />

 

<label>Whatsapp</label>indica il nome in grassetto della variante richiamata in php 

<a href="https://api.whatsapp.com/send?phone=39 e il link che ci serve per aprire il nostro contatto whatsapp 

{$addresses.delivery->phone_mobile} è il codice php che richiama il numero di cellulare oppure solo la stringa phone per il numero di casa ma in questo caso non ci serve.

target="_blank" semplice codice html per aprire la paginetta in una nuova scheda.

{$addresses.delivery->phone_mobile}</a><br /> infine questo mostra fuori da a href il numero inserito dal cliente con relativo link inserito e chiusura del link e del codice php con </a> ed </br>

Edited by cyber (see edit history)
Link to comment
Share on other sites

Altra miglioria ho aggiunto anche le iconcine ^_^

 

<p><label>{l s='Numeri WhatsApp'}</label></p>
                                            <p><img src="https://www.destinazionefoto.it" alt="Telefono"> <a href="https://api.whatsapp.com/send?phone=39{$addresses.delivery->phone}" target="_blank"> {$addresses.delivery->phone}</a><br /></p>
                                            <p><img src="https://www.destinazionefoto.it" alt="Smartphone"> <a href="https://api.whatsapp.com/send?phone=39{$addresses.delivery->phone_mobile}" target="_blank"> {$addresses.delivery->phone_mobile}</a><br /></p>

miglioria.jpg

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...