• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn tạo plugin vô hiệu hóa ai đã đọc bài viết cho vbb

Admin

Well-Known Member
Staff member
Administrator
Plugin sẽ hoàn toàn vô hiệu hóa ai đã đọc bài viết trên một số chuyên mục theo ý muốn của bạn.
Mặc dù vbb đã có chức năng này nhưng thực sự vbulletin vẫn lưu ai đã đọc vào cơ sở dữ liệu của bạn.
Với plugin sau bạn có thể giảm các truy vấn về diễn đàn của bạn nếu bạn quyết định vô hiệu hóa ai đã đọc bài viết
Plugin chạy tốt trên vbb 4.2.2
Hướng dẫn:
Vào Admincp > Plugins & Products > Add New Plugin
Product: vBulletin
Hook Location : showthread_start
Title: Vô hiệu hóa ai đã đọc bài viết
Execution Order: 1
Plugin PHP Code:
PHP:
$_enable_forums = array(2);
if (isset($forumid) && !in_array($forumid, $_enable_forums) && isset($vbulletin)) {
	$vbulletin->options['who_read'] = 0;
}
Có thể thêm nhiều chuyên mục bằng cách thay đổi
$_enable_forums
Ví dụ
PHP:
$_enable_forums = array(2, 3);
$_enable_forums = array(2, 3, id diễn đàn bạn);
Plugin is active: Yes
Lưu lại là xong
Chúc các bạn thành công!
Bài viết chỉ đăng duy nhất tại tuoitreit.vn, mọi sự sao chép phải ghi rõ nguồn và liên kết đến bài viết gốc.
 
  • Like
Reactions: Ktv

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top