Üyeliğin hakkında sorunlar👨🏼‍🔧yaşıyorsanız bunu bizimle paylaşa bilirsiniz
Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız.
  • 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.

smf 2.1 son mesajları üstte alma

Welcome to our site, Guest

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

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