Hiện lên tất thì khi thành viên có vài chục món đồ thì diễn đàn vừa xấu vừa load lâu thôi.
Bạn có thể để hiện hơn ba món hàng bằng cách mở file topics.php tìm:
QUOTE
while ((strpos($t_item,',',1)>0)&&($i < 3))
{
$i = $i+1;
$item_id = substr($t_item,1,strpos($t_item,',',1)-1);
$t_item = substr($t_item, strpos($t_item,',',1), strlen($t_item)-strpos($t_item,',',1));
$member['member_items'] .= $this->shop_html->show_item_in_topic($item_id);
if ($i % 7 == 0) $member['member_items'] .= $this->shop_html->break_line();
}
}
Thay 3 bằng số hàng tối đa mà bạn muốn hiện ra (muốn hiện ra tất thì cứ thay bằng 10000 đi

)