{"id":1309,"date":"2026-02-05T15:52:59","date_gmt":"2026-02-05T20:52:59","guid":{"rendered":"https:\/\/unitedsouthbroadway.org\/index.php\/stripe-checkout-result\/"},"modified":"2026-03-12T09:58:40","modified_gmt":"2026-03-12T13:58:40","slug":"donation","status":"publish","type":"page","link":"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/","title":{"rendered":"Checkout"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1309\" class=\"elementor elementor-1309\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-afeb104 e-con-full e-flex e-con e-parent\" data-id=\"afeb104\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-da18b17 e-con-full e-flex e-con e-child\" data-id=\"da18b17\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-05203a7 e-con-full e-flex e-con e-child\" data-id=\"05203a7\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-44b9d05 elementor-widget elementor-widget-heading\" data-id=\"44b9d05\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">stand with homeowners<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-796843a elementor-widget elementor-widget-heading\" data-id=\"796843a\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">when it metters most<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e880f8 elementor-widget elementor-widget-text-editor\" data-id=\"7e880f8\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>For many New Mexico homeowners, foreclosure begins with an unexpected challenge, such as a medical bill, job loss, or rising costs, that makes it harder to keep up with a mortgage. When that happens, the system can be confusing and difficult to navigate on your own.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5646749 elementor-widget elementor-widget-text-editor\" data-id=\"5646749\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>United South Broadway Corporation provides free housing counseling, foreclosure prevention support, financial education, and access to legal assistance so homeowners can understand their options and take informed steps forward. Our counselors help families review notices, communicate with lenders, and explore realistic solutions before a temporary setback becomes the permanent loss of a home. Your donation helps ensure that homeowners across New Mexico have access to trusted guidance that protects families, preserves homeownership, and strengthens communities.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-202ca165 e-flex e-con-boxed e-con e-parent\" data-id=\"202ca165\" data-element_type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6ff141e elementor-widget elementor-widget-shortcode\" data-id=\"6ff141e\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\">        <div class=\"donation-container\">\n\n            <h3>Your Email<\/h3>\n            <input type=\"email\" id=\"donor-email\" placeholder=\"you@example.com\" required>\n\n            <h3>Your Donation<\/h3>\n\n            <div class=\"amount-options\">\n                <button class=\"amount-btn\" data-amount=\"10\">$10<\/button>\n                <button class=\"amount-btn\" data-amount=\"25\">$25<\/button>\n                <button class=\"amount-btn\" data-amount=\"50\">$50<\/button>\n                <button class=\"amount-btn\" data-amount=\"100\">$100<\/button>\n            <\/div>\n\n            <input type=\"number\" id=\"custom-amount\" placeholder=\"Custom amount ($)\" min=\"1\">\n\n            <div class=\"form-actions\">\n                <button id=\"submit-payment\" class=\"submit-btn\">\n                    Proceed to Secure Payment\n                <\/button>\n            <\/div>\n\n        <\/div>\n\n        <script src=\"https:\/\/js.stripe.com\/v3\/\"><\/script>\n        <script>\n        const stripe = Stripe('pk_live_2uNG3ervt4XhFFUaKB2WQZhQ005PTggUOB');\n        let email = '';\n        let amount = 0;\n\n        document.querySelectorAll('.amount-btn').forEach(btn => {\n            btn.addEventListener('click', function () {\n                document.querySelectorAll('.amount-btn').forEach(b => b.classList.remove('selected'));\n                this.classList.add('selected');\n                amount = parseInt(this.dataset.amount);\n                document.getElementById('custom-amount').value = '';\n            });\n        });\n\n        document.getElementById('custom-amount').addEventListener('input', function () {\n            document.querySelectorAll('.amount-btn').forEach(b => b.classList.remove('selected'));\n            amount = parseInt(this.value) || 0;\n        });\n\n        document.getElementById('submit-payment').addEventListener('click', async function () {\n            email = document.getElementById('donor-email').value;\n            if (!email || amount < 1) {\n                alert('Please enter a valid email and donation amount.');\n                return;\n            }\n\n            this.disabled = true;\n            this.textContent = 'Redirecting\u2026';\n\n            const response = await fetch('https:\/\/unitedsouthbroadway.org\/wp-admin\/admin-ajax.php', {\n                method: 'POST',\n                headers: {'Content-Type': 'application\/x-www-form-urlencoded'},\n                body: new URLSearchParams({\n                    action: 'create_stripe_session',\n                    email: email,\n                    amount: amount * 100,\n                    nonce: '57f16e5a12'\n                })\n            });\n\n            const data = await response.json();\n\n            if (data.sessionId) {\n                stripe.redirectToCheckout({ sessionId: data.sessionId });\n            } else {\n                alert(data.error || 'Payment failed.');\n                this.disabled = false;\n                this.textContent = 'Proceed to Secure Payment';\n            }\n        });\n        <\/script>\n\n        <style>\n\t\t\t.donation-container h3{\n\t\t\t\tfont-family: \"Hartshorn\", Sans-serif !important;\n\t\t\t\ttext-align:center !important;\n\t\t\t}\n        .donation-container { max-width:500px; margin:80px auto; font-family:Sans-serif; }\n        input {\n            width: 100% !important;\n            padding: 12px !important;\n            margin-bottom: 15px !important;\n            color:#1D2939 !important;\n            background-color:#ffffff !important;\n            border-color:#D0D5DD !important;\n            border-width:1px !important;\n            border-style:solid !important;\n            border-radius:8px !important;\n            font-size:14px !important;\n            box-sizing: border-box !important;\n            outline: none !important;\n            font-weight:normal !important;\n        }\n        #custom-amount {\n            margin-top: 15px;\n        }\n        .amount-options { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 30px; }\n        .amount-btn { padding: 12px; border: 2px solid #ddd; cursor: pointer; }\n        .amount-btn.selected { background: #635bff; color: #fff; }\n        .form-actions { display: flex; gap: 10px; justify-content:center !important;}\n        .next-btn, .submit-btn { background: #635bff; color: #fff; padding: 12px; border: none; }\n        .prev-btn { background: #eee; padding: 12px; border: none; }\n        <\/style>\n        <\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>stand with homeowners when it metters most For many New Mexico homeowners, foreclosure begins with an unexpected challenge, such as a medical bill, job loss, or rising costs, that makes it harder to keep up with a mortgage. When that happens, the system can be confusing and difficult to navigate on your own. United South [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1309","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Checkout - United South Broadway Corporation<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Checkout - United South Broadway Corporation\" \/>\n<meta property=\"og:description\" content=\"stand with homeowners when it metters most For many New Mexico homeowners, foreclosure begins with an unexpected challenge, such as a medical bill, job loss, or rising costs, that makes it harder to keep up with a mortgage. When that happens, the system can be confusing and difficult to navigate on your own. United South [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/\" \/>\n<meta property=\"og:site_name\" content=\"United South Broadway Corporation\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-12T13:58:40+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/\",\"url\":\"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/\",\"name\":\"Checkout - United South Broadway Corporation\",\"isPartOf\":{\"@id\":\"https:\/\/unitedsouthbroadway.org\/#website\"},\"datePublished\":\"2026-02-05T20:52:59+00:00\",\"dateModified\":\"2026-03-12T13:58:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/unitedsouthbroadway.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Checkout\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unitedsouthbroadway.org\/#website\",\"url\":\"https:\/\/unitedsouthbroadway.org\/\",\"name\":\"United South Broadway Corporation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/unitedsouthbroadway.org\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unitedsouthbroadway.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unitedsouthbroadway.org\/#organization\",\"name\":\"United South Broadway Corporation\",\"url\":\"https:\/\/unitedsouthbroadway.org\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/unitedsouthbroadway.org\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unitedsouthbroadway.org\/wp-content\/uploads\/2025\/07\/USBC-Logo-Horizontal-Blue-and-Baby-Blue@4x-scaled.png\",\"contentUrl\":\"https:\/\/unitedsouthbroadway.org\/wp-content\/uploads\/2025\/07\/USBC-Logo-Horizontal-Blue-and-Baby-Blue@4x-scaled.png\",\"width\":2560,\"height\":801,\"caption\":\"United South Broadway Corporation\"},\"image\":{\"@id\":\"https:\/\/unitedsouthbroadway.org\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Checkout - United South Broadway Corporation","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Checkout - United South Broadway Corporation","og_description":"stand with homeowners when it metters most For many New Mexico homeowners, foreclosure begins with an unexpected challenge, such as a medical bill, job loss, or rising costs, that makes it harder to keep up with a mortgage. When that happens, the system can be confusing and difficult to navigate on your own. United South [&hellip;]","og_url":"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/","og_site_name":"United South Broadway Corporation","article_modified_time":"2026-03-12T13:58:40+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/","url":"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/","name":"Checkout - United South Broadway Corporation","isPartOf":{"@id":"https:\/\/unitedsouthbroadway.org\/#website"},"datePublished":"2026-02-05T20:52:59+00:00","dateModified":"2026-03-12T13:58:40+00:00","breadcrumb":{"@id":"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unitedsouthbroadway.org\/index.php\/donation\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/unitedsouthbroadway.org\/index.php\/donation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/unitedsouthbroadway.org\/"},{"@type":"ListItem","position":2,"name":"Checkout"}]},{"@type":"WebSite","@id":"https:\/\/unitedsouthbroadway.org\/#website","url":"https:\/\/unitedsouthbroadway.org\/","name":"United South Broadway Corporation","description":"","publisher":{"@id":"https:\/\/unitedsouthbroadway.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unitedsouthbroadway.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/unitedsouthbroadway.org\/#organization","name":"United South Broadway Corporation","url":"https:\/\/unitedsouthbroadway.org\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/unitedsouthbroadway.org\/#\/schema\/logo\/image\/","url":"https:\/\/unitedsouthbroadway.org\/wp-content\/uploads\/2025\/07\/USBC-Logo-Horizontal-Blue-and-Baby-Blue@4x-scaled.png","contentUrl":"https:\/\/unitedsouthbroadway.org\/wp-content\/uploads\/2025\/07\/USBC-Logo-Horizontal-Blue-and-Baby-Blue@4x-scaled.png","width":2560,"height":801,"caption":"United South Broadway Corporation"},"image":{"@id":"https:\/\/unitedsouthbroadway.org\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/pages\/1309","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/comments?post=1309"}],"version-history":[{"count":10,"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/pages\/1309\/revisions"}],"predecessor-version":[{"id":1414,"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/pages\/1309\/revisions\/1414"}],"wp:attachment":[{"href":"https:\/\/unitedsouthbroadway.org\/index.php\/wp-json\/wp\/v2\/media?parent=1309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}