Jump to content

Kenapa tampilan blockadvertising jadi Double


idagalma

Recommended Posts

Teman-teman !

Situs saya kok tampilan blockadvertising nya kok jadi double ya, soalnya ada disebelah kiri dan juga disebelah kanan, kembar gitu lhoh !

Kira -kira ada yg tahu dimana letak script yg harus dirubah, sehingga tampilannya cukup satu aja

thanks !

Link to comment
Share on other sites

trus yg perlu diubah atau dihapus baris yg mana ya dari script ini :

}

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

makasih !

Link to comment
Share on other sites

bagi yg tahu tolong dong bagaimana cara merubah script ini supaya iklannya tidak tampil di dua tempat yaitu kanan dan kiri, maksudku agar iklannya tampil di sebalh kiri aja

dari script ini apa yg dirubah, pls help !

<?php

class BlockAdvertising extends Module
{
function __construct()
{
$this->name = 'blockadvertising';
$this->tab = 'Blocks';
$this->version = 0.1;

parent::__construct(); // The parent construct is required for translations

$this->page = basename(__FILE__, '.php');
$this->displayName = $this->l('Block advertising');
$this->description = $this->l('Adds a block to display an advertising');
}

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

/**
* Returns module content
*
* @param array $params Parameters
* @return string Content
*/
function hookRightColumn($params)
{
global $smarty;
$smarty->assign('image', './modules/'.$this->name.'/advertising.jpg');
return $this->display(__FILE__, 'blockadvertising.tpl');
}

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

}

?>

Link to comment
Share on other sites

Cara gampang ya tinggal copy modulnya aja, ganti nama dikit (termasuk code php dan tpl yang related dengan nama modul tersebut).
Sorry saya gak pake modul itu, jadi gak bisa ngasih contohnya. php ma tpl nya... (gak susah2 amat kok...) sambil coba2 sendiri dulu..
Ntar kalo masih stuck... kalo sempat aku bantu... (lagi sibuk nih...)

BTW webnya dah diupdate ya... sekarang advertising modulnya tinggal dikiri aja.

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