smf 2.1 son mesajları üstte alma

Hello, welcome back!

We want to bring together those who have knowledge and those who need it, to bring together people with different perspectives so that they can understand each other better and to enable everyone to share their knowledge.

  • Sitemiz Bir Webmaster forumu ve tartışma platformu dur webmaster forumu dışındaki konular yasaktır direkt silinecektir.
  • Our site is a Webmaster forum and discussion platform. Topics outside the webmaster forum are prohibited and will be deleted immediately.

mustafa

Kayitli Üye
Joined
Nov 10, 2019
Messages
79
Reaction score
8
Points
8
Age
54
Bunu bir yerde gördüm

BoardIndex.template.php de
bul
Code:
	echo '
	<div id="boardindex_table" class="boardindex_table">';

değiştir
Code:
	echo '
	<div id="boardindex_table" class="boardindex_table">';
	template_ic_block_recent();
hem altta hem üstte gözüktü bunu nasıl engelleriz derseniz

bul
Code:
		$func = 'template_ic_block_' . $block['tpl'];
		$func();

değiştir
Code:
	$func = 'template_ic_block_' . $block['tpl'];
		if($func == 'template_ic_block_recent')
		echo'';
		else
		$func();
 
Back
Top Bottom