Jump to content

Alguien sabe que cambiar para que se vea del lado derecho solamente?


Juanberroc

Recommended Posts

Hola soy nuevo por aquí si me ayudan se los agradecere mucho
Juan desde México




<?php

class BlockMSN extends Module
{
function __construct()
{
$this->name = 'blockmsn';
$this->tab = 'Blocks';
$this->version = 1;

parent::__construct();

$this->displayName = $this->l('Block MSN Messenger By Renova-Nova');
$this->description = $this->l('Add a block to MSN');
}

function install()
{
if (!parent::install())
return false;
if (!$this->registerHook('rightColumn') OR !$this->registerHook('leftColumn'))
return false;
return true;
}

/** **/
function hookRightColumn($params)
{
global $smarty;

return $this->display(__FILE__, 'blockmsn.tpl');
}

function hookLeftColumn($params)
{
return $this->hookRightColumn($params);
}

}

?>

Link to comment
Share on other sites

Ok, estás en módulos dentro del backend (panel de administración), pues pincha arriba a la izquierda "posiciones" y luego "trasladar un módulo". Busca tu módulo y ponlo en right coumn, luego ahí en posiciones borralo de la columna izquierda.

Edit: Me has adelantado por segundos jejeje

Link to comment
Share on other sites

  • 1 year later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...