Recordad que para pedir soporte alguno, debéis facilitar los datos de soporte oportunos por favor, mirad aquí y leer las Normas generales del foro, esto nos servirá de ayuda para dar el mejor soporte..

Gracias.

La Administración de phpBB España.

Quitar todos los bloquesTema Solucionado

Soporte de MODs para phpBB 3.0.x
Dudas sobre AutoMOD aquí por favor.
Cerrado
cfeze
Asiduo/a
Mensajes: 126
Registrado: 02 Ago 2010, 18:10

Quitar todos los bloques

#1

Mensaje por cfeze »

Hola gente, he intentado hacer miles de cosas para quitar todos los bloques al portal sólo pude quitar los del centro pero los laterales...no

http://www.korn.clandyt.com/ratings.php

Lo que hice, es convertir el portal.php a ratings.php y modificar algunas cosas.

acá el código:

Código: Seleccionar todo

<?php

/*

*

* @package phpBB3 Portal  a.k.a canverPortal  ( www.phpbb3portal.com )

* @version $Id: portal.php,v 1.11 2008/02/09 08:18:13 angelside Exp $

* @copyright (c) Canver Software - www.canversoft.net

* @license http://opensource.org/licenses/gpl-license.php GNU Public License 

*

*/



// Note: If you would like to have the portal in a different location than in the main phpBB3 directory

// You must change the following variable, and change the 'U_PORTAL' template variable in functions.php

define('IN_PHPBB', true);

define('IN_PORTAL', true);

define('PHPBB_ROOT_PATH', './');

define('PORTAL_ROOT_PATH','./portal/');



$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';

$portal_root_path = (defined('PORTAL_ROOT_PATH')) ? PORTAL_ROOT_PATH : './portal/';



$phpEx = substr(strrchr(__FILE__, '.'), 1);

include($phpbb_root_path . 'common.' . $phpEx);

include($portal_root_path . '/includes/functions.'.$phpEx);



// Start session management

$user->session_begin();

$auth->acl($user->data);

$user->setup('portal');
$user->lang['PORTAL'] = 'Voobly Live Ratings';


// show login box and user menu



//  acp de aç/kapa yok, dil dosyasýna ek: hiç doðumgünü yoksa evet seçili olsa bile blok görünmez.

// SQL bilgisi yok -  - SQL eklenirse dil deðiþkeni de eklenmeli

//if ($config['portal_user_menu'])

//{

	// only registered user see user menu

	if ($user->data['is_registered'])

	{

		include($portal_root_path . '/block/user_menu.'.$phpEx);

	}

	else

	{

		include($portal_root_path . '/block/login_box.'.$phpEx);

	}

//}



$template->assign_vars(array(
		'S_DISPLAY_RATINGS' 	=> true,
		'S_SHOW_TOP_RATING'		=> true
));

include($phpbb_root_path . '/LiveRatings/ratingsphpBB.php');
include($phpbb_root_path . '/LiveRatings/VooblyBlockphpBB.php');




if ($config['portal_advanced_stat'])

{

	include($portal_root_path . '/block/statistics.'.$phpEx);

}



if ($config['portal_minicalendar'])

{

	include($portal_root_path . '/block/mini_cal.'.$phpEx);

}



if ($config['portal_link_us'])

{

	include($portal_root_path . '/block/link_us.'.$phpEx);

}



if ($config['portal_leaders'])

{

	include($portal_root_path . '/block/leaders.'.$phpEx);

}



/* Removed
if ($config['portal_wordgraph'])
{
	include($portal_root_path . '/block/wordgraph.'.$phpEx);
}

if ( $config['portal_poll_topic'] && $config['portal_poll_topic'] != "" )
{
	include($portal_root_path . '/block/poll.'.$phpEx);
}
*/



if ($config['portal_load_last_visited_bots'])

{

	include($portal_root_path . '/block/latest_bots.'.$phpEx);

}



if ($config['portal_top_posters'])

{

	include($portal_root_path . '/block/top_posters.'.$phpEx);

}



if ($config['portal_latest_members'])

{

	include($portal_root_path . '/block/latest_members.'.$phpEx);

}



if ($config['portal_random_member'])

{

	include($portal_root_path . '/block/random_member.'.$phpEx);

}



if ($config['portal_clock'])

{

	$template->assign_vars(array(

		'S_DISPLAY_CLOCK' => true,

	));

}



if ($config['portal_links'])

{

//	include($portal_root_path . '/block/links.'.$phpEx);

	$template->assign_vars(array(

		'S_DISPLAY_LINKS' => true,

	));

}



/* Removed
if ($config['portal_welcome'])
{
	$template->assign_vars(array(
		'S_DISPLAY_WELCOME' 	=> true,
		'PORTAL_WELCOME_INTRO'	=> $config['portal_welcome_intro'],
	));
}

if ($config['portal_announcements'])
{
	include($portal_root_path . '/block/announcements.'.$phpEx);
	$template->assign_vars(array(
		'S_ANNOUNCE_COMPACT' => ($config['portal_announcements_style']) ? true : false,
	));
}

if ($config['portal_news'])
{
	include($portal_root_path . '/block/news.'.$phpEx);
	$template->assign_vars(array(
		'S_NEWS_COMPACT' => ($config['portal_news_style']) ? true : false,
	));
}

if ($config['portal_pay_s_block'] or $config['portal_pay_c_block'])
{
	include($portal_root_path . '/block/donate.'.$phpEx);
}
*/





if ($config['portal_ads_small'])

{

	$template->assign_vars(array(

		'S_ADS_SMALL' 	=> ($config['portal_ads_small_box']) ? true : false,

		'ADS_SMALL_BOX'	=> $config['portal_ads_small_box'],

	));

}



if ($config['portal_ads_center'])

{

	$template->assign_vars(array(

		'S_ADS_CENTER' 		=> ($config['portal_ads_center_box']) ? true : false,

		'ADS_CENTER_BOX'	=> $config['portal_ads_center_box'],

	));

}





// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli

if ($user->data['is_registered']/* and $config['portal_friends']*/)

{

	include($portal_root_path . '/block/friends.'.$phpEx);

}



// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli

// dil dosyasýna ek: hiç doðumgünü yoksa evet seçili olsa bile blok görünmez.

//if ($config['show_birthdays'])

//{

	include($portal_root_path . '/block/birthday_list.'.$phpEx);

//}



// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli

//if ($config['show_whois_online'])

//{

	include($portal_root_path . '/block/whois_online.'.$phpEx);

//}



// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli

//if ($config['show_search'])

//{

	include($portal_root_path . '/block/search.'.$phpEx);

//}



// acp de aç/kapa yok - SQL bilgisi yok - SQL eklenirse dil deðiþkeni de eklenmeli

//if ($config['change_style'])

//{

//	include($portal_root_path . '/block/change_style.'.$phpEx); // stil seçince hata veriyor

//}



$template->assign_vars(array(

	'S_DISPLAY_JUMPBOX' 	=> true, // SQL + ACP eklenecek

	'PORTAL_LEFT_COLLUMN' 	=> $config['portal_left_collumn_width'],

	'PORTAL_RIGHT_COLLUMN' 	=> $config['portal_right_collumn_width'],

));



// output page

page_header($user->lang['PORTAL']);

//page_header($config['sitename']);



$template->set_filenames(array(

	'body' => 'portal/portal_body.html'

));



// SQL + ACP eklenecek

make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));



page_footer();



?>
Saludos!
URL: http://www.clandyt.com
Versión phpBB: phpBB3 (3.0.9)
MODs Instalados: Advanced BBCode Box 3, Country Flags User Edition, MSSTI QuickReply, phpBB3 Portal
Plantilla(s) usada(s): Attiriuum
Servidor: byethost.com (premium)
Actualización desde otra versión:
Conversión desde otro sistema de foros:

Avatar de Usuario
DaVidU
Ex Staff
Mensajes: 776
Registrado: 08 Oct 2009, 12:24
Edad: 49

Re: Quitar todos los bloques  Tema Solucionado

#2

Mensaje por DaVidU »

no se lo que hiciste ni que pretendes pero aún sigo viendo las barras laterales en tu archivo, normal que sigan estando :jaja:

Código: Seleccionar todo

<!-- [+] left block area -->
pienso para lo que intentas hacer hubiera sido mejor crear una página personalizada y ponerla la primera al abrir el dominio, en fin, si buscas en tutoriales encontraras toda la info :ok:
Datos de mi foro en caso de soporte:
URL: http://coloreatuforo.com
Versión phpBB: phpBB 3.0.8
MODs Instalados: + de 100 MODs
Plantilla(s) usada(s): Prosilver modificada
Servidor: Linux
Actualización desde otra versión: 3.0.1
Conversión desde otro sistema de foros: No

cfeze
Asiduo/a
Mensajes: 126
Registrado: 02 Ago 2010, 18:10

Re: Quitar todos los bloques

#3

Mensaje por cfeze »

Ya entendí como hacerlo. Jaja

Código: Seleccionar todo

$template->set_filenames(array(

   'body' => 'portal/portal_body.html'

));

Código: Seleccionar todo

$template->set_filenames(array(

   'body' => 'portal/ratings_body.html'

));
ratings_body.html es la copia de portal_body.html pero quitando o modificando los bloques que queres que aparezcan.

Eso es todos!

En fin, gracias DaVidU tema solucionado
URL: http://www.clandyt.com
Versión phpBB: phpBB3 (3.0.9)
MODs Instalados: Advanced BBCode Box 3, Country Flags User Edition, MSSTI QuickReply, phpBB3 Portal
Plantilla(s) usada(s): Attiriuum
Servidor: byethost.com (premium)
Actualización desde otra versión:
Conversión desde otro sistema de foros:

Cerrado

Volver a “Soporte de MODs”