Hallo nach dem ich erfolglos danach gesucht habe , frage ich nun mal nach gibt es eine Anleitung die "Wer war da" Box auch nach Links und Rechts zu verschieben?
Gruß
Wer war da rechts und links?
-
Topic author - Portal Enthusiast
- Posts: 149
- Joined: 8. September 2011 01:16
Re: Wer war da rechts und links?
Hi
Suche in der portal_who_was_here.php das hier:
Ersetze es mit:
Suche in der portal_who_was_here.php das hier:
Setze danach folgendes ein:
Erstell eine Datei mit den Namen who_was_here_side.html (Ist allerdings für prosilver basierende Styles.)
und füge das hier ein:
Damit kannst diesen Block verschieben wohin du willst.
Suche in der portal_who_was_here.php das hier:
Code: Select all
public $columns = 21;
Code: Select all
public $columns = 31;
Code: Select all
return 'who_was_here_center.html';
}
Code: Select all
public function get_template_side($module_id)
{
global $config, $template, $phpbb_root_path, $phpEx;
if (!class_exists('phpbb_mods_who_was_here'))
{
include($phpbb_root_path . 'includes/mods/who_was_here.' . $phpEx);
phpbb_mods_who_was_here::update_session();
}
phpbb_mods_who_was_here::display();
return 'who_was_here_side.html';
}
und füge das hier ein:
Code: Select all
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" /> {$TITLE}<!-- ENDIF -->{$LR_BLOCK_H_R}
{WHO_WAS_HERE_TOTAL} ({WHO_WAS_HERE_EXP})<br /><br />{WHO_WAS_HERE_RECORD}<br />{WHO_WAS_HERE_LIST}
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
Gruß Udo
-
Topic author - Portal Enthusiast
- Posts: 149
- Joined: 8. September 2011 01:16
Re: Wer war da rechts und links?
Hallo Kirk
Vielen dank geht perfekt.
Vielen dank geht perfekt.