{"id":25744,"date":"2025-06-02T10:04:06","date_gmt":"2025-06-02T10:04:06","guid":{"rendered":"https:\/\/antiscamhub.com\/?page_id=25744"},"modified":"2026-01-06T09:14:29","modified_gmt":"2026-01-06T09:14:29","slug":"product-verification-check","status":"publish","type":"page","link":"https:\/\/antiscamhub.com\/bn\/product-verification-check\/","title":{"rendered":"Products Verification Check"},"content":{"rendered":"<div class=\"et_pb_section_0 et_pb_section et_section_regular et_block_section\"><div class=\"et_pb_row_0 et_pb_row et_block_row\"><div class=\"et_pb_column_0 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\"><div class=\"et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module et_pb_text_align_center\"><div class=\"et_pb_text_inner\"><h2>Product Verification<\/h2>\n<p>Verify if your product is authentic by checking the serial number or product code<\/p>\n<\/div><\/div><div class=\"et_pb_code_0 et_pb_code et_pb_module\"><div class=\"et_pb_code_inner\">    <div class=\"pap-verify-box\">\n        <div class=\"pap-verify-title\">Enter Product Details<\/div>\n        <div class=\"pap-verify-desc\">Provide the serial number or product code to verify its authenticity<\/div>\n        <label class=\"pap-label\" for=\"pap-code\">Serial Number \/ Product Code<\/label>\n        <div class=\"pap-input-row\">\n            <input type=\"text\" id=\"pap-code\" class=\"pap-input\" placeholder=\"e.g., S12345678\">\n            <button class=\"pap-btn\" onclick=\"papVerifyCode()\" type=\"button\">\n                <span class=\"pap-btn-icon\">\n                    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-search h-4 w-4 mr-2\">\n                        <circle cx=\"11\" cy=\"11\" r=\"8\"><\/circle>\n                        <path d=\"m21 21-4.3-4.3\"><\/path>\n                    <\/svg>\n                <\/span>\n                Verify\n            <\/button>\n        <\/div>\n        <div class=\"pap-demo-hint\">\n            For demo, try: <span style=\"color:#7c3aed;\">S12345678<\/span> (verified) or <span style=\"color:#e00;\">F12345678<\/span> (fake)\n        <\/div>\n        <div id=\"pap-result\" style=\"margin-top: 15px;\"><\/div>\n    <\/div>\n    <script>\n        function papVerifyCode() {\n            const code = document.getElementById('pap-code').value.trim();\n            if (!code) {\n                document.getElementById('pap-result').innerHTML = `\n                <div class='pap-alert-warning'>\n                  <span class='pap-alert-icon'>\n                    <svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\">\n                      <circle cx=\"20\" cy=\"20\" r=\"18\" fill=\"#ffb300\"\/>\n                      <path d=\"M20 12v8\" stroke=\"#fff\" stroke-width=\"2.5\" stroke-linecap=\"round\"\/>\n                      <circle cx=\"20\" cy=\"26\" r=\"1.5\" fill=\"#fff\"\/>\n                    <\/svg>\n                  <\/span>\n                  <div>\n                    <div class=\"pap-alert-title\">Input Required<\/div>\n                    <div class=\"pap-alert-desc\">Please enter a code.<\/div>\n                  <\/div>\n                <\/div>\n                `;\n                return;\n            }\n            fetch('https:\/\/antiscamhub.com\/wp-admin\/admin-ajax.php?action=pap_verify_code&code=' + encodeURIComponent(code))\n                .then(res => res.json())\n                .then(data => {\n                    console.log(data);\n                    const result = document.getElementById('pap-result');\n                    if (data.success) {\n                        let html = `<div style='color:green;font-size:1.1em;font-weight:600;margin-bottom:8px;'>\u2705 Verified Product<\/div>`;\n                        if (data.data.company_name) html += `<div><strong>Company Name:<\/strong> ${data.data.company_name}<\/div>`;\n                        if (data.data.product_name) html += `<div><strong>Product Name:<\/strong> ${data.data.product_name}<\/div>`;\n                        if (data.data.production_date) html += `<div><strong>Production Date:<\/strong> ${data.data.production_date}<\/div>`;\n                        if (data.data.expiry_date) {\n                            let ed = data.data.expiry_date;\n                            if (\/^\\d{8}$\/.test(ed)) {\n                                ed = ed.substring(0, 2) + '-' + ed.substring(2, 4) + '-' + ed.substring(4, 8);\n                            }\n                            html += `<div><strong>Expiry Date:<\/strong> ${ed}<\/div>`;\n                        }\n                        if (data.data.filter_name) html += `<div><strong>Group:<\/strong> ${data.data.filter_name}<\/div>`;\n                        if (data.data.phone) html += `<div><strong>Phone:<\/strong> ${data.data.phone}<\/div>`;\n                        if (data.data.address) html += `<div><strong>Address:<\/strong> ${data.data.address}<\/div>`;\n                        if (data.data.details) html += `<div><strong>Details:<\/strong> ${data.data.details}<\/div>`;\n                        \/\/ Donation status and total\n                        if (typeof data.data.donation_status !== 'undefined') {\n                            if (data.data.donation_status === 'yes') {\n                                html += `<div><span style='color:green;font-weight:bold;'>Yes Donate<\/span><\/div>`;\n                            } else {\n                                html += `<div><span style='color:#888;'>No Donate<\/span><\/div>`;\n                            }\n                        }\n                        if (typeof data.data.code_id !== 'undefined' && data.data.code_id) {\n                            html += `<div><strong>Product Code:<\/strong> ${data.data.code_id}<\/div>`;\n                        }\n                        if (typeof data.data.last_donation_amount !== 'undefined' && data.data.last_donation_amount > 0) {\n                            html += `<div><strong>Donated:<\/strong> tk. ${parseFloat(data.data.last_donation_amount).toFixed(2)}<\/div>`;\n                        }\n                        if (typeof data.data.donation_recipient !== 'undefined' && data.data.donation_recipient) {\n                            html += `<div><strong>Recipient:<\/strong> ${data.data.donation_recipient}<\/div>`;\n                        }\n                        result.innerHTML = html;\n                    } else {\n                        result.innerHTML = `<span style='color:red;font-weight:600;'>\u274c ${data.data.message}<\/span>`;\n                    }\n                })\n                .catch(() => {\n                    document.getElementById('pap-result').innerHTML = '<span style=\"color:red\">Something went wrong. Please try again.<\/span>';\n                });\n        }\n    <\/script>\n<\/div><\/div><div class=\"et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module et_pb_text_align_center\"><div class=\"et_pb_text_inner\"><h2>How to Verify Products<\/h2>\n<\/div><\/div><\/div><\/div><div class=\"et_pb_row_1 et_pb_row et_block_row\"><div class=\"et_pb_column_1 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\"><div class=\"et_pb_text_2 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module\"><div class=\"et_pb_text_inner\"><ol>\n<li><strong>Find the Serial Number or Product Code<\/strong><br \/>Look for the serial number, QR code, or unique product code usually found on the packaging or product label.<\/li>\n<li><strong>Go to the Verification Page<\/strong><br \/>Visit our Product Verification section (replace # with your actual link) on the website.<\/li>\n<li><strong>Enter the Code<\/strong><br \/>Input the serial number or product code exactly as shown. Avoid spaces or typos.<\/li>\n<li><strong>Submit and Wait for Results<\/strong><br \/>Click the \"Verify\" button. The system will cross-check the code in real time.<\/li>\n<li><strong>Check the Result<\/strong><br \/>\u2705 If Authentic, you\u2019ll see full product details, date of activation, and verified company info.<br \/>\u274c If Invalid or Already Used, you\u2019ll be warned about a possible counterfeit or reused code.<\/li>\n<li><strong>Report Suspicious Products<\/strong><br \/>If you suspect fraud, report it immediately through our Report Scam form (insert link).<\/li>\n<\/ol>\n<\/div><\/div><\/div><\/div><\/div><div class=\"et_pb_section_1 et_pb_section et_section_regular et_block_section\"><div class=\"et_pb_row_2 et_pb_row et_block_row\"><div class=\"et_pb_column_2 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough\"><div class=\"et_pb_text_3 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module et_pb_text_align_center\"><div class=\"et_pb_text_inner\"><h2>Supported Brands<\/h2>\n<p>We currently support verification for products from these brands:<\/p>\n<\/div><\/div>[dipl_image_card_carousel cards_per_slide=5 space_between_slides=\"21px\" show_control_dot=\"on\" control_dot_style=\"stretched_dot\" cards_per_slide_tablet=2 cards_per_slide_phone=1 _builder_version=\"4.27.4\" _module_preset=\"default\" module_alignment=\"center\" global_colors_info=\"{}\"][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][dipl_image_card_carousel_item title=\"Company Name \" image=\"https:\/\/antiscamhub.com\/wp-content\/uploads\/2025\/05\/cropped-antiscamhub.png\" image_alt=\"Logo\" _builder_version=\"4.27.4\" _module_preset=\"default\" width=\"70%\" global_colors_info=\"{}\"][\/dipl_image_card_carousel_item][\/dipl_image_card_carousel]<\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-25744","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/pages\/25744","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/comments?post=25744"}],"version-history":[{"count":22,"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/pages\/25744\/revisions"}],"predecessor-version":[{"id":28020,"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/pages\/25744\/revisions\/28020"}],"wp:attachment":[{"href":"https:\/\/antiscamhub.com\/bn\/wp-json\/wp\/v2\/media?parent=25744"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}