Jump to content

[SOLUCIONADO] Como obtengo el teléfono de un cliente para reutilizarlo.


Y-axis

Recommended Posts

Hola buen día gente del foro,

 

Como el titulo lo dice Como el titulo lo dice necesito la variable del teléfono de un cliente, he visto que para el precio total se utiliza:

<span id="amount_{$currencies.0.id_currency}" class="price">{convertPrice price=$total}</span>

¿Cómo obtengo la del teléfono o el celular ?

 

Muchas gracias por su ayuda.

Edited by Y-axis (see edit history)
Link to comment
Share on other sites

En este archivo

\modules\cashondelivery\controllers\front\validation.php

Busca esta parte

	public function initContent()
	{
		parent::initContent();

Debajo añade esto

 $addresses = $this->context->customer->getAddresses($this->context->language->id);

Un poco mas abajo, debajo de

$this->context->smarty->assign(array(

Añade

 'addresses' => $addresses, 

Luego en el archivo

\themes\tu_thema\modules\cashondelivery\views\templates\front\validation.tpl

Donde quieras que aparezca el telefono añade

<p>{if $addresses[0].phone}{l s='Telf:' mod='cashondelivery'}{$addresses[0].phone}{/if} </p>
Edited by ventura (see edit history)
  • Like 1
Link to comment
Share on other sites

  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...