{"id":42,"date":"2025-07-10T06:45:50","date_gmt":"2025-07-10T06:45:50","guid":{"rendered":"https:\/\/pgvape.com\/index.php\/orders-tracking\/"},"modified":"2025-10-30T13:20:31","modified_gmt":"2025-10-30T13:20:31","slug":"seguimiento-de-pedidos","status":"publish","type":"page","link":"https:\/\/pgvape.com\/es\/seguimiento-de-pedidos\/","title":{"rendered":"Seguimiento de pedidos"},"content":{"rendered":"\n\t<div id=\"text-2928066926\" class=\"text\">\n\t\t\n\n<h1>Order Tracking<\/h1>\n\t\t\n<style>\n#text-2928066926 {\n  font-size: 1.5rem;\n  text-align: center;\n  color: rgb(0,0,0);\n}\n#text-2928066926 > * {\n  color: rgb(0,0,0);\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"is-divider divider clearfix\" style=\"margin-top:20px;margin-bottom:20px;max-width:1000px;\"><\/div>\n\n\n\n<div>\n  <div class=\"track-main\">\n    <div class=\"track-form\">\n      <input id=\"inputNo\" class=\"track-input\" type=\"text\" placeholder=\"Please fill in Logistics tracking number\" \/>\n      <span id=\"checkButton\" class=\"track-button\">Track<\/span>\n    <\/div>\n  <\/div> \n  \n  \n    <div id=\"trackingResults\" class=\"track-result\">\n    <\/div>\n    \n    <div class=\"lang-switch\">\n        <span>Language: <\/span>\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('english');\">English<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('deutsch');\">Deutsch<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('french');\">Fran\u00e7ais<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('spanish');\">Espa\u00f1ol<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('italian');\">Italiano<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('swedish');\">Svenska<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('dutch');\">Nederlands<\/a> |\n        <a class=\"ignore\" href=\"javascript:translate.changeLanguage('chinese_simplified');\">\u7b80\u4f53\u4e2d\u6587<\/a>\n    <\/div>\n\n<\/div>\n\n\n<script>\n\n    \/\/ \u9ed8\u8ba4\u8bed\u8a00\n    let currentLanguage = localStorage.getItem('Language') || 'en';\n\n\n    function delUrlParam(param) {\n        let obj = new window.URL(window.location.href);\n        obj.searchParams.delete(param);\n        return obj.href;\n    }\n    \n    function addUrlParam(key, value) {\n        let obj = new window.URL(window.location.href);\n        obj.searchParams.set(key, value);\n        return obj.href;\n    }\n\n    function addLinksToText(text) {\n      const regex = new RegExp(\"(https?:\/\/[^s]+)\", \"g\");\n        \n        return text.replace(regex, function(match) {\n            return `<a style=\"color: blue\" href=\"${match}\" target=\"_blank\">${match}<\/a>`;\n        });\n    }\n    \n    function performTrackingQuery(trackingNumber) {\n        jQuery('#trackingResults').html(`\n            <p>Checking. Please wait....<\/p>\n        `);\n        \/\/ \u53d1\u9001\u67e5\u8be2\u8bf7\u6c42\u5230\u670d\u52a1\u5668\uff0c\u83b7\u53d6\u7269\u6d41\u4fe1\u606f\n        jQuery.ajax({\n            url: '\/wp-json\/api\/v1\/tracking\/' + trackingNumber,\n            method: 'GET',\n            success: async function(response) {\n                const list = JSON.parse(response);\n\n                \/\/ \u521d\u59cb\u5316 HTML \u5b57\u7b26\u4e32\n                var html = `<ul class=\"track-list\">`;\n\n                \/\/ \u5c06\u6240\u6709\u9879\u5148\u663e\u793a\u51fa\u6765\n                list.forEach(function(item, index) {\n                    html += `\n                        <li id=\"track-item-${index}\">\n                            <span class='time'>${item.time}<\/span>\n                            <span class='location' id='location-${index}'>Translating...<\/span>\n                            <span class='detail' id='detail-${index}'>Translating...<\/span>\n                        <\/li>`;\n                });\n\n                \/\/ \u7ed3\u675f\u5217\u8868\n                html += `<\/ul>`;\n\n                \/\/ \u5c06 HTML \u63d2\u5165\u5230\u9875\u9762\u4e2d\n                jQuery('#trackingResults').html(html);\n\n                \/\/ \u6279\u91cf\u7ffb\u8bd1\u5e76\u66f4\u65b0\u5185\u5bb9\n                 translateAndUpdateBatch(list);\n            },\n            error: function() {\n                jQuery('#trackingResults').html(`\n                    <p>\u67e5\u8be2\u51fa\u9519\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\u3002<\/p>\n                `);\n            }\n        });\n    }\n\n\n    \/\/ \u6279\u91cf\u7ffb\u8bd1\u6587\u672c\u7684\u51fd\u6570\u5e76\u66f4\u65b0\u9875\u9762\n    async function translateAndUpdateBatch(list) {\n        try {\n            const textsToTranslate = list.flatMap(item => [item.location, item.detail]);\n            const translatedTexts = await translateTexts(textsToTranslate);\n\n            list.forEach(function(item, index) {\n                jQuery(`#location-${index}`).html(translatedTexts[index * 2]);\n                jQuery(`#detail-${index}`).html(addLinksToText(translatedTexts[index * 2 + 1]));\n            });\n        } catch (error) {\n            console.error('Translation error:', error);\n            list.forEach(function(item, index) {\n                jQuery(`#location-${index}`).html(item.location);\n                jQuery(`#detail-${index}`).html(addLinksToText(item.detail));\n            });\n        }\n    }\n\n\n    var translate = {\n        changeLanguage:  function(language) {\n            const languageMap = {\n                'english': 'en',\n                'deutsch': 'de',\n                'french': 'fr',\n                'spanish': 'es',\n                'italian': 'it',\n                'swedish': 'sv',\n                'dutch': 'nl',\n                'chinese_simplified': 'zh-Hans'\n            };\n            currentLanguage = languageMap[language] || 'en';\n            localStorage.setItem('Language', currentLanguage);\n            \/\/ \u91cd\u65b0\u6267\u884c\u67e5\u8be2\u4ee5\u66f4\u65b0\u7ffb\u8bd1\n            const list = jQuery('.track-list li').map(function(index, element) {\n                return {\n                    location: jQuery(`#location-${index}`).text(),\n                    detail: jQuery(`#detail-${index}`).text()\n                };\n            }).get();\n\n            if (list.length > 0) {\n                 list.forEach(function(item, index) {\n                    jQuery(`#location-${index}`).html('Translating...');\n                    jQuery(`#detail-${index}`).html('Translating...');\n                });\n                 translateAndUpdateBatch(list);\n            }\n        }\n    };\n    \n    async function translateTexts(texts) {\n        try {\n            const accessToken = await getAccessToken();\n            const response = await fetch(`https:\/\/api.cognitive.microsofttranslator.com\/translate?api-version=3.0&to=${currentLanguage}`, {\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application\/json',\n                    'Authorization': `Bearer ${accessToken}`,\n                },\n                body: JSON.stringify(texts.map(text => ({ 'Text': text })))\n            });\n\n            const data = await response.json();\n            return data.map(item => item.translations[0].text);\n        } catch (error) {\n            console.error('Translation error:', error);\n            return texts; \/\/ \u5982\u679c\u7ffb\u8bd1\u5931\u8d25\uff0c\u8fd4\u56de\u539f\u59cb\u6587\u672c\u6570\u7ec4\n        }\n    }\n\n    async function getAccessToken() {\n        const response = await fetch('https:\/\/edge.microsoft.com\/translate\/auth');\n        const token = await response.text();\n        return token;\n    }\n    \n    \n    \n    jQuery(document).ready(function() {\n        \/\/ \u83b7\u53d6 URL \u4e2d\u7684\u53c2\u6570\n        var urlParams = new URLSearchParams(window.location.search);\n        var trackingNumber = urlParams.get('no');\n\n        if (trackingNumber) {\n            \/\/ \u8bbe\u7f6e\u8ffd\u8e2a\u53f7\u7801\u5230\u8f93\u5165\u6846\n            jQuery('#inputNo').val(trackingNumber);\n\n            \/\/ \u6267\u884c\u67e5\u8be2\u64cd\u4f5c\n            performTrackingQuery(trackingNumber);\n        }\n\n          \n        jQuery('#checkButton').click(function() {\n            var trackingNumber = jQuery('#inputNo').val();\n            console.log(trackingNumber);\n\n            if (trackingNumber.trim() !== '') {\n                history.pushState({}, 0, delUrlParam('no')); \n                history.pushState({}, 0, addUrlParam('no', trackingNumber));\n                performTrackingQuery(trackingNumber);\n            } else {\n                alert('Please enter the tracking number\uff01');\n            }\n        });\n\n        \n    });\n    \n\n<\/script>\n\n<style>\n\n#main  .lang-switch a{\n  color: #2196F3 !important;\n}\n\n#main  .lang-switch {\n  margin: 10px 0;\n}\n \n \n\n#main .track-form {\n  display: flex;\n}\n#main .track-input {\n  width: 100%;\n  height: auto;\n  margin: 0;\n  border: 1px solid #f4f4f4;\n  padding: 0 10px;\n}\n#main .track-button {\n  background: #17ef97;\n  padding: 4px 50px;\n  color: #000;\n  font-weight: 500;\n  line-height: 3;    cursor: pointer;\n}\n\n\/* \u9ed8\u8ba4\u6837\u5f0f\uff0c\u9002\u7528\u4e8e\u684c\u9762\u7aef\u8bbe\u5907 *\/\n#main .track-list {\n  padding: 0;\n  margin: 0;\n  list-style-type: none;\n}\n\n#main  .track-list li {\n  padding: 10px 15px 10px 45px; \/* \u589e\u52a0\u5de6\u53f3\u5185\u8fb9\u8ddd\uff0c\u63d0\u9ad8\u89e6\u63a7\u533a *\/\n  border-color: 1px solid #EBEAEB !important;\n  font-size: 16px; \/* \u9ed8\u8ba4\u5b57\u4f53\u5927\u5c0f *\/\n  position: relative;\n}\n\n\n#main   .track-list li::before {\n    content: '';\n    display: inline-block;\n    width: 10px;\n    height: 10px;\n    border-radius: 50%; \/* \u5706\u5f62 *\/\n    background-color: #a4a4a4; \/* \u9ed1\u8272 *\/\n    margin-right: 10px; \/* \u5706\u5f62\u548c\u6587\u672c\u4e4b\u95f4\u7684\u95f4\u8ddd *\/\n    position: absolute;\n    left: 5px;\n    top: 50%;\n  }\n  .track-list li:first-child::before {\n    background-color: #17ef97;\n  animation: glowGreen 1.5s ease-in-out infinite; \/* \u7eff\u8272\u5706\u5f62\u5149\u6548\u52a8\u753b *\/\n  }\n\n#main .track-list .time {\n   display: block;\n  font-weight: bold;\n}\n\n#main .track-list .location {\n   display: block;\n}\n\n#main .track-list .detail {\n   display: block;\n  word-wrap: break-word; \/* \u9632\u6b62\u957f\u5355\u8bcd\u6216\u8005URL\u6ea2\u51fa *\/\n}\n\n#main .track-list .detail a {\n  color: #00c7ff !important; \/* \u94fe\u63a5\u7684\u989c\u8272\u4fdd\u6301\u4e00\u81f4 *\/\n  text-decoration: none; \/* \u53bb\u9664\u94fe\u63a5\u7684\u4e0b\u5212\u7ebf *\/\n}\n\n\/* \u79fb\u52a8\u7aef\u6837\u5f0f *\/\n@media (max-width: 768px) {\n  .track-list li {\n    flex-direction: column; \/* \u5217\u8868\u9879\u5782\u76f4\u6392\u5217 *\/\n     padding: 10px 0 10px 30px; \/* \u589e\u52a0\u5185\u8fb9\u8ddd\uff0c\u63d0\u9ad8\u89e6\u63a7\u533a\u57df *\/\n  }\n\n  \/* \u5728\u5c0f\u5c4f\u5e55\u4e0b\uff0ctime \u548c location \u653e\u5728\u540c\u4e00\u884c\uff0cdetail \u5728\u4e0b\u65b9 *\/\n  .track-list .time,\n  .track-list .location {\n    width: 100%;\n    display: block;\n  }\n\n  .track-list .detail {\n    width: 100%; \/* detail \u5360\u6ee1\u5269\u4f59\u5bbd\u5ea6 *\/\n    margin-top: 10px; \/* \u589e\u52a0\u4e0e\u4e0a\u4e00\u884c\u7684\u95f4\u8ddd *\/\n  }\n\n  .track-list .time,\n  .track-list .location {\n    font-size: 14px; \/* \u8c03\u6574\u5b57\u4f53\u5927\u5c0f\u9002\u5e94\u5c0f\u5c4f *\/\n  }\n\n  .track-list .detail {\n    font-size: 14px;\n  }\n}\n\n\n\n\/* \u7eff\u8272\u5706\u5f62\u5149\u6548\u52a8\u753b *\/\n@keyframes glowGreen {\n  0% {\n    box-shadow: 0 0 5px #17ef97, 0 0 15px #17ef97, 0 0 20px #17ef97;\n  }\n  50% {\n    box-shadow: 0 0 10px #17ef97, 0 0 25px #17ef97, 0 0 30px #0f0;\n  }\n  100% {\n    box-shadow: 0 0 5px #17ef97, 0 0 15px #17ef97, 0 0 20px #17ef97;\n  }\n}\n\n\n<\/style>\n\n<div class=\"text-center\"><div class=\"is-divider divider clearfix\" style=\"margin-top:100px;margin-bottom:100px;max-width:10px;\"><\/div><\/div>\n\n\t<div id=\"text-1030840512\" class=\"text\">\n\t\t\n\n<h4>Thank you for choosing <strong data-sourcepos=\"7:24-7:38\">pgvape.com<\/strong>! With our order tracking system, you can easily check the status of your order. If you encounter any issues, please follow the guidelines below or contact our customer support team. We are here to help!<\/h4>\n\t\t\n<style>\n#text-1030840512 {\n  font-size: 0.75rem;\n  line-height: 1.75;\n  color: rgb(0,0,0);\n}\n#text-1030840512 > * {\n  color: rgb(0,0,0);\n}\n@media (min-width:550px) {\n  #text-1030840512 {\n    font-size: 0.75rem;\n  }\n}\n@media (min-width:850px) {\n  #text-1030840512 {\n    font-size: 0.9rem;\n    line-height: 1.75;\n  }\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"is-divider divider clearfix\" style=\"margin-top:10px;margin-bottom:10px;max-width:1000px;\"><\/div>\n\n\t<div id=\"text-1111309280\" class=\"text\">\n\t\t\n\n<h2 data-sourcepos=\"11:1-11:35\">\ud83d\udd0d\u00a0<strong data-sourcepos=\"11:7-11:35\">How to Track Your Order?<\/strong><\/h2>\n<ol data-sourcepos=\"12:1-21:74\">\n<li data-sourcepos=\"12:1-13:127\">\n<p data-sourcepos=\"12:4-13:127\"><strong data-sourcepos=\"12:4-12:28\">Through Your Account<\/strong>: Log in to your <strong data-sourcepos=\"13:19-13:41\">\u00a0account<\/strong>, go to the &#8220;My Orders&#8221; section, and check the logistics information for your order.<\/p>\n<\/li>\n<li data-sourcepos=\"15:1-16:192\">\n<p data-sourcepos=\"15:4-16:192\"><strong data-sourcepos=\"15:4-15:30\">Through the Email Link<\/strong>: After your package is shipped, you will receive an email containing a tracking number and a link to check the logistics status. Click on the link in the email to view the tracking details.<\/p>\n<\/li>\n<li data-sourcepos=\"18:1-21:74\">\n<p data-sourcepos=\"18:4-19:88\"><strong data-sourcepos=\"18:4-18:23\">Contact Support<\/strong>: If you haven&#8217;t received the email or face any issues, feel free to contact us via:<\/p>\n<ul data-sourcepos=\"20:4-21:74\">\n<li data-sourcepos=\"20:4-20:67\"><strong data-sourcepos=\"20:6-20:18\">WhatsApp<\/strong>: <span style=\"font-size: 140%;\"><strong><span style=\"color: #0000ff;\"><a class=\"button secondary is-link is-xxsmall lowercase\" style=\"color: #0000ff;\" href=\"https:\/\/wa.me\/18128481258\" target=\"_blank\" rel=\"noopener\"><span dir=\"auto\">+8618128481258<\/span><\/a><\/span><\/strong><\/span><\/li>\n<li data-sourcepos=\"21:4-21:74\"><strong data-sourcepos=\"21:6-21:23\">Support Email<\/strong>:\u00a0<a href=\"mailto:support@pgvape.com\" data-sentry-component=\"CustomLink\" data-sentry-source-file=\"index.tsx\">support@pgvape.com<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\t\t\n<style>\n#text-1111309280 {\n  font-size: 0.75rem;\n  line-height: 1.75;\n  color: rgb(0,0,0);\n}\n#text-1111309280 > * {\n  color: rgb(0,0,0);\n}\n@media (min-width:850px) {\n  #text-1111309280 {\n    font-size: 0.9rem;\n  }\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"is-divider divider clearfix\" style=\"margin-top:10px;margin-bottom:10px;max-width:1000px;\"><\/div>\n\n\t<div id=\"text-4181343982\" class=\"text\">\n\t\t\n\n<h2 data-sourcepos=\"25:1-25:37\">\ud83d\ude9a\u00a0<strong data-sourcepos=\"25:7-25:37\">Frequently Asked Questions<\/strong><\/h2>\n<h3 data-sourcepos=\"27:1-27:37\"><strong data-sourcepos=\"27:5-27:37\">How long does delivery take?<\/strong><\/h3>\n<ul data-sourcepos=\"28:1-29:144\">\n<li data-sourcepos=\"28:1-28:92\"><strong data-sourcepos=\"28:3-28:29\">Standard Delivery Time<\/strong>: Usually\u00a0<strong data-sourcepos=\"28:39-28:61\">7-15 business days<\/strong>, depending on your location.<\/li>\n<li data-sourcepos=\"29:1-29:144\"><strong data-sourcepos=\"29:3-29:20\">Special Cases<\/strong>: Public holidays, bad weather, or customs clearance may cause delays, with a maximum delivery time of\u00a0<strong data-sourcepos=\"29:123-29:143\">20 business days<\/strong>.<\/li>\n<\/ul>\n<h3 data-sourcepos=\"33:1-33:50\"><strong data-sourcepos=\"33:5-33:50\">Where can I find my tracking information?<\/strong><\/h3>\n<ul data-sourcepos=\"34:1-37:84\">\n<li data-sourcepos=\"34:1-34:126\">After your package is shipped, you will receive an email with a tracking number and a link to check the logistics status.<\/li>\n<li data-sourcepos=\"35:1-37:84\"><strong data-sourcepos=\"35:3-35:38\">If you didn&#8217;t receive the email<\/strong>:\n<ol data-sourcepos=\"36:3-37:84\">\n<li data-sourcepos=\"36:3-36:36\">Check your spam\/junk folder.<\/li>\n<li data-sourcepos=\"37:3-37:84\">If still not found, contact us via\u00a0<strong data-sourcepos=\"37:41-37:68\">WhatsApp <a href=\"https:\/\/wa.me\/18128481258\">+8618128481258<\/a><\/strong>\u00a0for assistance.<\/li>\n<\/ol>\n<\/li>\n<\/ul>\n<h3 data-sourcepos=\"41:1-41:36\"><strong data-sourcepos=\"41:5-41:36\">Why can&#8217;t I track my order?<\/strong><\/h3>\n<ul data-sourcepos=\"42:1-43:115\">\n<li data-sourcepos=\"42:1-42:119\"><strong data-sourcepos=\"42:3-42:30\">Recently shipped orders<\/strong>: The courier may not have scanned the package yet. Please wait 1-2 days and try again.<\/li>\n<li data-sourcepos=\"43:1-43:115\"><strong data-sourcepos=\"43:3-43:30\">Logistics update delays<\/strong>: Sometimes the tracking system takes\u00a0<strong data-sourcepos=\"43:68-43:83\">24-48 hours<\/strong>\u00a0to synchronize the information.<\/li>\n<\/ul>\n<h3 data-sourcepos=\"47:1-47:47\"><strong data-sourcepos=\"47:5-47:47\">Why hasn&#8217;t my tracking status changed?<\/strong><\/h3>\n<p data-sourcepos=\"48:1-48:47\">Delays in tracking updates may be caused by:<\/p>\n<ul data-sourcepos=\"49:1-52:27\">\n<li data-sourcepos=\"49:1-49:24\"><strong data-sourcepos=\"49:3-49:22\">Public holidays<\/strong><\/li>\n<li data-sourcepos=\"50:1-50:29\"><strong data-sourcepos=\"50:3-50:27\">High shipping volume<\/strong><\/li>\n<li data-sourcepos=\"51:1-51:41\"><strong data-sourcepos=\"51:3-51:39\">Reduced air freight availability<\/strong><\/li>\n<li data-sourcepos=\"52:1-52:27\"><strong data-sourcepos=\"52:3-52:25\">Customs processing<\/strong><\/li>\n<\/ul>\n<p data-sourcepos=\"54:1-54:132\">We recommend waiting for <strong data-sourcepos=\"54:26-54:45\">3 business days<\/strong> before checking again. If there are still no updates, please contact our support team.<\/p>\n<h3 data-sourcepos=\"58:1-58:100\"><strong data-sourcepos=\"58:5-58:100\">My tracking status shows &#8220;Delivered,&#8221; but I haven&#8217;t received the package. What should I do?<\/strong><\/h3>\n<ol data-sourcepos=\"59:1-61:194\">\n<li data-sourcepos=\"59:1-59:141\"><strong data-sourcepos=\"59:4-59:56\">Check with neighbors or the local delivery point<\/strong>: The package may have been collected by a neighbor or stored in a delivery locker.<\/li>\n<li data-sourcepos=\"60:1-60:117\"><strong data-sourcepos=\"60:4-60:27\">Contact the courier<\/strong>: Use the tracking number or link to get detailed delivery information from the courier.<\/li>\n<li data-sourcepos=\"61:1-61:194\"><strong data-sourcepos=\"61:4-61:32\">Contact customer support<\/strong>: If the issue remains unresolved, reach out to us via\u00a0<strong data-sourcepos=\"61:87-61:114\">WhatsApp <a href=\"https:\/\/wa.me\/18128481258\">+8618128481258<\/a><\/strong>\u00a0or\u00a0<strong data-sourcepos=\"61:118-61:169\"><a href=\"mailto:support@pgvape.com\" data-sentry-component=\"CustomLink\" data-sentry-source-file=\"index.tsx\">support@pgvape.com<\/a><\/strong>, and we will assist you.<\/li>\n<\/ol>\n\t\t\n<style>\n#text-4181343982 {\n  font-size: 0.75rem;\n  line-height: 1.75;\n  color: rgb(0, 0, 0);\n}\n#text-4181343982 > * {\n  color: rgb(0, 0, 0);\n}\n@media (min-width:850px) {\n  #text-4181343982 {\n    font-size: 0.9rem;\n  }\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"is-divider divider clearfix\" style=\"margin-top:10px;margin-bottom:10px;max-width:1000px;\"><\/div>\n\n\t<div id=\"text-1952881479\" class=\"text\">\n\t\t\n\n<h2 data-sourcepos=\"65:1-65:21\">\ud83d\udce8\u00a0<strong data-sourcepos=\"65:7-65:21\">Contact Us<\/strong><\/h2>\n<ul data-sourcepos=\"67:1-69:80\">\n<li data-sourcepos=\"67:1-67:71\"><strong data-sourcepos=\"67:3-67:20\">Support Email<\/strong>:\u00a0<a href=\"mailto:support@pgvape.com\" data-sentry-component=\"CustomLink\" data-sentry-source-file=\"index.tsx\">support@pgvape.com<\/a><\/li>\n<li data-sourcepos=\"68:1-68:88\"><strong data-sourcepos=\"68:3-68:15\">WhatsApp<\/strong>: <a href=\"https:\/\/wa.me\/18128481258\">+8618128481258<\/a>\u00a0(Reply within 24 hours)<\/li>\n<li data-sourcepos=\"69:1-69:80\"><strong data-sourcepos=\"69:3-69:21\">Business Hours<\/strong>: Monday to Friday, 9:00 AM \u2013 6:00 PM (China Standard Time)<\/li>\n<\/ul>\n<p data-sourcepos=\"73:1-73:184\"><strong data-sourcepos=\"73:1-73:39\">Thank you for trusting pgvape.com!<\/strong> We are committed to providing you with fast and secure shipping. If you need further assistance, feel free to contact our customer support team.<\/p>\n\t\t\n<style>\n#text-1952881479 {\n  font-size: 0.75rem;\n  line-height: 1.75;\n  color: rgb(0,0,0);\n}\n#text-1952881479 > * {\n  color: rgb(0,0,0);\n}\n@media (min-width:850px) {\n  #text-1952881479 {\n    font-size: 0.9rem;\n  }\n}\n<\/style>\n\t<\/div>\n\t\n<div class=\"is-divider divider clearfix\" style=\"margin-top:10px;margin-bottom:10px;max-width:1000px;\"><\/div>\n\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_seopress_robots_primary_cat":"","_seopress_titles_title":"","_seopress_titles_desc":"","_seopress_robots_index":"","footnotes":""},"class_list":["post-42","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/pages\/42","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/comments?post=42"}],"version-history":[{"count":0,"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/pages\/42\/revisions"}],"wp:attachment":[{"href":"https:\/\/pgvape.com\/es\/wp-json\/wp\/v2\/media?parent=42"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}