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..
Saludos a todos en la comunidad la verdad que hoy mismo me decidí a instalar este mod, pero la verdad que solo en el cuerpo del tema solo me aparece el texto siguiente:
"Advertencias : 1"
Entonces quería preguntarles como hacer para que en ves de salirme esto me salgan las tarjetas amarillas, tanto azules y rojas apra cuando este baneado... Es alguna extención o un add-ons que habrá que realizar?
(Tener el mod como esta acá)
ruego me disculpen si ya esta solucionado esto pero no encontré el topic adecuado para leerlo, Gracias por todo!
URL:http://rpgn.byethost9.com/phpBB/index.php (Foro de Pruebas!!!) Plantilla(s) usuada(s): subSilver. (Decorada por Mi) ñ_ñ MODs instalados: EasyMod, birthdayMod, genderMod, Top poster, Level Mod, color Groups + (Add-ons), Quick Post, eXtreme Styles mod, Simple Subforums, Last post title on index, Post Icon, Últimos mensajes, Forum Icon with ACP control, Rate Topic + (Add-ons), Topic Description, Cash Mod, Shop Mod, Anuncio Global, simple_split_topic_type_131, Password-protected forums 0.5.1, The humanizer, yellow_card_1.4.12em, default_avatar_1.1.0, Rank Image in Profile Hack, rank_in_member_list_1.2.2em, Today_At_Yesterday_At_1.3.1, Related topics 0.1.2. Versión de phpBB: 2.0.22 Servidor: Gratuito!. Si es una actualización desde otra versión: Ninguna. Si es una conversión desde otro tipo de Foro: Ninguna.
ronalito, lo han preguntado algunas veces, pero creo que no está solucionado...
Abre viewtopic.php
Busca:
[codeblock]// these lines will make a icon apear beside users post, if user have warnings or ar banned
// used instead of the previous line of code, witch shows the status as a text
// ------ From here --- do not include this line
// $card_img = ($user_warnings) ? '<img src="'.(( $user_warnings < $board_config['max_user_bancard']) ?
// $images['icon_y_card'] . '" alt="'. sprintf($lang['Warnings'], $user_warnings) .'">' :
// $images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">') : '';
// ----- To this line --- Do not included this line
//
// You may also included several images, instead of only one yellow, these lines below will produce several yellow images, depending on mumber of yellow cards
// ------ From here --- do not include this line
//$card_img = ($user_warnings >= $board_config['max_user_bancard']) ? '<img src="'.$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">' : '';
//for ($n=0 ; $n<$user_warnings && $user_warnings < $board_config['max_user_bancard'];$n++)
//{
//$card_img .= ($user_warnings) ? '<img src="'.(( $user_warnings < $board_config['max_user_bancard']) ?
//$images['icon_y_card'] . '" alt="'. sprintf($lang['Warnings'], $user_warnings) .'">' :
//$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">') : '';
//}
// ----- To this line --- Do not included this line[/codeblock]
Sustituir por:
[codeblock]// these lines will make a icon apear beside users post, if user have warnings or ar banned
// used instead of the previous line of code, witch shows the status as a text
// ------ From here --- do not include this line
$card_img = ($user_warnings) ? '<img src="'.(( $user_warnings < $board_config['max_user_bancard']) ?
$images['icon_y_card'] . '" alt="'. sprintf($lang['Warnings'], $user_warnings) .'">' :
$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">') : '';
// ----- To this line --- Do not included this line
//
// You may also included several images, instead of only one yellow, these lines below will produce several yellow images, depending on mumber of yellow cards
// ------ From here --- do not include this line
$card_img = ($user_warnings >= $board_config['max_user_bancard']) ? '<img src="'.$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">' : '';
for ($n=0 ; $n<$user_warnings && $user_warnings < $board_config['max_user_bancard'];$n++)
{
$card_img .= ($user_warnings) ? '<img src="'.(( $user_warnings < $board_config['max_user_bancard']) ?
$images['icon_y_card'] . '" alt="'. sprintf($lang['Warnings'], $user_warnings) .'">' :
$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">') : '';
}
// ----- To this line --- Do not included this line[/codeblock]
Disculpa! Bueno ya con esto quedará claro no? Eso espero ¬¬
Gracias amigo, disculpa mi ignorancia y bueno me sirvió!
URL:http://rpgn.byethost9.com/phpBB/index.php (Foro de Pruebas!!!) Plantilla(s) usuada(s): subSilver. (Decorada por Mi) ñ_ñ MODs instalados: EasyMod, birthdayMod, genderMod, Top poster, Level Mod, color Groups + (Add-ons), Quick Post, eXtreme Styles mod, Simple Subforums, Last post title on index, Post Icon, Últimos mensajes, Forum Icon with ACP control, Rate Topic + (Add-ons), Topic Description, Cash Mod, Shop Mod, Anuncio Global, simple_split_topic_type_131, Password-protected forums 0.5.1, The humanizer, yellow_card_1.4.12em, default_avatar_1.1.0, Rank Image in Profile Hack, rank_in_member_list_1.2.2em, Today_At_Yesterday_At_1.3.1, Related topics 0.1.2. Versión de phpBB: 2.0.22 Servidor: Gratuito!. Si es una actualización desde otra versión: Ninguna. Si es una conversión desde otro tipo de Foro: Ninguna.