hey guys, does anyone know if it is possible to put banners on every single page except the homepage??
if so... how??
thanks,
houman
hey guys, does anyone know if it is possible to put banners on every single page except the homepage?? if so... how?? thanks, houman |
Hello!
Regard |
.... is there anyway i can change this?? |
Hello!
Regard |
thanks leonid can u please explain how i would do it if i wanted it to show in every page other than sign up and index? |
Well, such variant will require adding strings to sys_injections for every page except 1 (index) and 81 (join). Better variant - add page_index checking directly to functions of banners like 'banner_put' in inc/banners.inc.php file and leave in table page_index =0. Regard |
thanks but im kinda a noob so can u please tell me step by step? |
Hello!
global $bann_click_url; add this construction: $aClosed = array(1, 81); If (in_array($GLOBALS['_page']['name_index'], $aClosed)) return ''; Something like this. Regard |