Jump to content

Añadir una nueva página en Mi Cuenta


five

Recommended Posts

Buenas a tod@s. 

Me gustaría añadir una nueva sección en la página de Mi cuenta donde ponga información obtenida de la BBDD. 

¿Sabéis de algún tutorial para verlo o tenéis algún ejemplo?

Muchas gracias!

Link to comment
Share on other sites

Lo mejor es que mires como esta hecho alguno de los modulos de favoritos, lista de deseos o alguno de ellos.

Primero necesitas usar el hook

displayCustomerAccount y añadir un tpl con el boton y el icono

luego añade front controller

$this->controllers = array(invoices');

Añade el fichero en /controllers/front/crontroler.php  y ahi añade el codigo que necesites y buscar en la BBDD

y al final le añades el tpl mas o menos asi .

$this->context->smarty->assign('invoices', $invoices);

			$this->context->smarty->assign('cliente', $id_customer);

			$this->context->smarty->assign('invoicesrec', $invoicesrec);

			$this->setTemplate('module:xxxxxxxxxxx/views/templates/front/invoices.tpl');

 

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