{"id":7909,"date":"2024-06-04T03:24:31","date_gmt":"2024-06-04T03:24:31","guid":{"rendered":"https:\/\/nfcntag.com\/?page_id=7909"},"modified":"2024-08-15T02:29:03","modified_gmt":"2024-08-15T02:29:03","slug":"pagamento","status":"publish","type":"page","link":"https:\/\/nfcntag.com\/pt\/pagamento\/","title":{"rendered":"Pagamento"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"7909\" class=\"elementor elementor-7909\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-e69b5f6 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"e69b5f6\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-05dee9f\" data-id=\"05dee9f\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e2911a3\" data-id=\"e2911a3\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ee4bad1 elementor-widget elementor-widget-shortcode\" data-id=\"ee4bad1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div id=\"smart-button-container\">\n    <div style=\"text-align: center\"><label for=\"description\">Pls write invoice No.: <\/label><input type=\"text\" name=\"descriptionInput\" id=\"description\" maxlength=\"127\" value=\"\"><\/div>\n      <p id=\"descriptionError\" style=\"visibility: hidden; color:red; text-align: center;\">Please enter a description<\/p >\n    <div style=\"text-align: center\"><label for=\"amount\">Payment amount: <\/label><input name=\"amountInput\" type=\"number\" id=\"amount\" value=\"\" ><span> USD<\/span><\/div>\n      <p id=\"priceLabelError\" style=\"visibility: hidden; color:red; text-align: center;\">Please enter a price<\/p >\n    <div id=\"invoiceidDiv\" style=\"text-align: center; display: none;\"><label for=\"invoiceid\"> <\/label><input name=\"invoiceid\" maxlength=\"127\" type=\"text\" id=\"invoiceid\" value=\"\" ><\/div>\n      <p id=\"invoiceidError\" style=\"visibility: hidden; color:red; text-align: center;\">Please enter an Invoice ID<\/p >\n    <div style=\"text-align: center; margin-top: 0.625rem;\" id=\"paypal-button-container\"><\/div>\n  <\/div>\n  <script src=\"https:\/\/www.paypal.com\/sdk\/js?client-id=Af6-8S3MA_W6WCgPP2VOGAQcySnDChVLQ7znFJ3jq4_uCovQH7d4fOJL2cQxuz5gfUd2ox8JQLdSIJpF&enable-funding=venmo&currency=USD\" data-sdk-integration-source=\"button-factory\"><\/script>\n  <script>\n  function initPayPalButton() {\n    var description = document.querySelector('#smart-button-container #description');\n    var amount = document.querySelector('#smart-button-container #amount');\n    var descriptionError = document.querySelector('#smart-button-container #descriptionError');\n    var priceError = document.querySelector('#smart-button-container #priceLabelError');\n    var invoiceid = document.querySelector('#smart-button-container #invoiceid');\n    var invoiceidError = document.querySelector('#smart-button-container #invoiceidError');\n    var invoiceidDiv = document.querySelector('#smart-button-container #invoiceidDiv');\n\n    var elArr = [description, amount];\n\n    if (invoiceidDiv.firstChild.innerHTML.length > 1) {\n      invoiceidDiv.style.display = \"block\";\n    }\n\n    var purchase_units = [];\n    purchase_units[0] = {};\n    purchase_units[0].amount = {};\n\n    function validate(event) {\n      return event.value.length > 0;\n    }\n\n    paypal.Buttons({\n      style: {\n        color: 'gold',\n        shape: 'rect',\n        label: 'paypal',\n        layout: 'vertical',\n        \n      },\n\n      onInit: function (data, actions) {\n        actions.disable();\n\n        if(invoiceidDiv.style.display === \"block\") {\n          elArr.push(invoiceid);\n        }\n\n        elArr.forEach(function (item) {\n          item.addEventListener('keyup', function (event) {\n            var result = elArr.every(validate);\n            if (result) {\n              actions.enable();\n            } else {\n              actions.disable();\n            }\n          });\n        });\n      },\n\n      onClick: function () {\n        if (description.value.length < 1) {\n          descriptionError.style.visibility = \"visible\";\n        } else {\n          descriptionError.style.visibility = \"hidden\";\n        }\n\n        if (amount.value.length < 1) {\n          priceError.style.visibility = \"visible\";\n        } else {\n          priceError.style.visibility = \"hidden\";\n        }\n\n        if (invoiceid.value.length < 1 && invoiceidDiv.style.display === \"block\") {\n          invoiceidError.style.visibility = \"visible\";\n        } else {\n          invoiceidError.style.visibility = \"hidden\";\n        }\n\n        purchase_units[0].description = description.value;\n        purchase_units[0].amount.value = amount.value;\n\n        if(invoiceid.value !== '') {\n          purchase_units[0].invoice_id = invoiceid.value;\n        }\n      },\n\n      createOrder: function (data, actions) {\n        return actions.order.create({\n          purchase_units: purchase_units,\n        });\n      },\n\n      onApprove: function (data, actions) {\n        return actions.order.capture().then(function (orderData) {\n\n          \/\/ Full available details\n          console.log('Capture result', orderData, JSON.stringify(orderData, null, 2));\n\n          \/\/ Show a success message within this page, e.g.\n          const element = document.getElementById('paypal-button-container');\n          element.innerHTML = '';\n          element.innerHTML = '<h3>Thank you for your payment!<\/h3>';\n\n          \/\/ Or go to another URL:  actions.redirect('thank_you.html');\n          \n        });\n      },\n\n      onError: function (err) {\n        console.log(err);\n      }\n    }).render('#paypal-button-container');\n  }\n  initPayPalButton();\n  <\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-db596ba elementor-widget elementor-widget-text-editor\" data-id=\"db596ba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>If you do not have the invoice number, our Paypal account is<strong>\u00a0<\/strong><span style=\"font-size: 17px; color: var( --e-global-color-astglobalcolor1 ); font-family: var( --e-global-typography-text-font-family ), Sans-serif;\"><b>ZBCAIWU@HOTMAIL.COM<\/b><\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-371965c elementor-widget elementor-widget-text-editor\" data-id=\"371965c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p><strong>After made a purchase, please send an email. <a href=\"mailto:Catherine@zbtechsz.com\">Catherine@zbtechsz.com<\/a><\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t<div class=\"elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-d7eeda2\" data-id=\"d7eeda2\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap\">\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Por favor, escreva o n\u00famero da fatura: Insira uma descri\u00e7\u00e3o. Valor do pagamento: USD Insira um pre\u00e7o. Insira um ID da fatura. Caso n\u00e3o tenha o n\u00famero da fatura, nossa conta do PayPal \u00e9 ZBCAIWU@HOTMAIL.COM. Ap\u00f3s efetuar a compra, envie um e-mail para Catherine@zbtechsz.com.<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-7909","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Payment - ZBTech<\/title>\n<meta name=\"robots\" content=\"index, nofollow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nfcntag.com\/pt\/pagamento\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Payment - ZBTech\" \/>\n<meta property=\"og:description\" content=\"Pls write invoice No.: Please enter a description Payment amount: USD Please enter a price Please enter an Invoice ID If you do not have the invoice number, our Paypal account is\u00a0ZBCAIWU@HOTMAIL.COM After made a purchase, please send an email. Catherine@zbtechsz.com\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nfcntag.com\/pt\/pagamento\/\" \/>\n<meta property=\"og:site_name\" content=\"ZBTech\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-15T02:29:03+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tempo estimado de leitura\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nfcntag.com\\\/payment\\\/\",\"url\":\"https:\\\/\\\/nfcntag.com\\\/payment\\\/\",\"name\":\"Payment - ZBTech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nfcntag.com\\\/#website\"},\"datePublished\":\"2024-06-04T03:24:31+00:00\",\"dateModified\":\"2024-08-15T02:29:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nfcntag.com\\\/payment\\\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nfcntag.com\\\/payment\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nfcntag.com\\\/payment\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nfcntag.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Payment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nfcntag.com\\\/#website\",\"url\":\"https:\\\/\\\/nfcntag.com\\\/\",\"name\":\"ZBTech\",\"description\":\"ZBTECH\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nfcntag.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-PT\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pagamento - ZBTech","robots":{"index":"index","follow":"nofollow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nfcntag.com\/pt\/pagamento\/","og_locale":"pt_PT","og_type":"article","og_title":"Payment - ZBTech","og_description":"Pls write invoice No.: Please enter a description Payment amount: USD Please enter a price Please enter an Invoice ID If you do not have the invoice number, our Paypal account is\u00a0ZBCAIWU@HOTMAIL.COM After made a purchase, please send an email. Catherine@zbtechsz.com","og_url":"https:\/\/nfcntag.com\/pt\/pagamento\/","og_site_name":"ZBTech","article_modified_time":"2024-08-15T02:29:03+00:00","twitter_card":"summary_large_image","twitter_misc":{"Tempo estimado de leitura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/nfcntag.com\/payment\/","url":"https:\/\/nfcntag.com\/payment\/","name":"Pagamento - ZBTech","isPartOf":{"@id":"https:\/\/nfcntag.com\/#website"},"datePublished":"2024-06-04T03:24:31+00:00","dateModified":"2024-08-15T02:29:03+00:00","breadcrumb":{"@id":"https:\/\/nfcntag.com\/payment\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nfcntag.com\/payment\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nfcntag.com\/payment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nfcntag.com\/"},{"@type":"ListItem","position":2,"name":"Payment"}]},{"@type":"WebSite","@id":"https:\/\/nfcntag.com\/#website","url":"https:\/\/nfcntag.com\/","name":"ZBTech","description":"ZBTECH","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nfcntag.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-PT"}]}},"_links":{"self":[{"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/pages\/7909","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/comments?post=7909"}],"version-history":[{"count":0,"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/pages\/7909\/revisions"}],"wp:attachment":[{"href":"https:\/\/nfcntag.com\/pt\/wp-json\/wp\/v2\/media?parent=7909"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}