ข้ามไปยังเนื้อหา
jQuery(document).ready(function($) {
const lightboxId = '#popup_daily_pm1';
// 1. ตรวจสอบว่าอยู่บนหน้า Home Page เท่านั้น
const isHomePage = (window.location.pathname === '/' || window.location.pathname === '/home/');
// 2. ตรวจสอบว่ามี Cookie 'popup_ten_min' ไหม (ซึ่ง PHP ตั้งไว้)
// การเช็ค document.cookie.includes() คือการตรวจสอบว่า PHP ตั้งคุกกี้สำเร็จ
const hasTenMinCookie = document.cookie.includes('popup_ten_min=1');
// เงื่อนไขรวม: ถ้าอยู่หน้า Home Page และ PHP เพิ่งตั้ง Cookie ไป (แปลว่าถึงเวลาโชว์แล้ว)
if (isHomePage && hasTenMinCookie) {
// ถ้าเป็นจริง: ให้เปิด Lightbox
setTimeout(function() {
// เปิด Lightbox ด้วย Magnific Popup API
$.magnificPopup.open({
items: {
src: lightboxId,
type: 'inline'
},
mainClass: 'mfp-fade',
removalDelay: 1000
}, 0);
}, 1000); // ดีเลย์ 1 วินาที
}
});