{"id":2052,"date":"2024-06-05T14:04:47","date_gmt":"2024-06-05T14:04:47","guid":{"rendered":"http:\/\/hope-cu.local\/?post_type=product&#038;p=2052"},"modified":"2024-08-14T11:35:38","modified_gmt":"2024-08-14T15:35:38","slug":"digital-wallets","status":"publish","type":"product","link":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/","title":{"rendered":"Digital Wallets"},"content":{"rendered":"\n<div class=\"wp-block-columns hope-product-content-layout is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column hope-product-content-side is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33\">\n<h2 class=\"wp-block-heading hope-product-heading\">Add your HOPE cards to Apple, Google, or Samsung Pay digital wallets.<\/h2>\n<\/div>\n\n\n\n<div class=\"wp-block-column hope-product-content-main is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66\">\n<div class=\"wp-block-group alignfull hope-product-content\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<h2 class=\"wp-block-heading has-hope-color-1-color has-text-color has-link-color wp-elements-a5086fd9b1ed160dd466b38b1cd09103\"><strong>Whether you\u2019re freshening up your wardrobe, picking up home improvement supplies, or topping off the tank, we keep you moving with the convenience of digital wallets.<\/strong><\/h2>\n\n\n\n<div style=\"height:2rem\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Load your HOPE debit and credit cards to an Apple Pay, Google Pay, or Samsung Pay account and enjoy a faster, more secure way to make purchases. You can use it in person, with apps, or online.<\/p>\n\n\n\n<section class=\"faq relative pv6\" id=\"faq-block_76251359cdbe6557e86578baac08a106\"\n    style=\"background-color: #F2EFE5;\">\n    <div class=\"flex w-100 justify-center items-center\">\n        <div class=\"w-90 hope-inner\">\n            <div class=\"hope-column-content-layout\">\n                                    <div class=\"hope-column-content-side\">\n                        <h2 class=\"hope-column-heading mb3\">Here&#8217;s why you should set up your Digital Wallet today: <\/h2>\n                        <p class=\"hope-column-copy\"><\/p>\n                    <\/div>\n                                <div class=\"hope-column-content-main faq-accordion secwis-cont\" >\n                                            <div class=\"faq-acc-item\">\n                            <div class=\"faq-acc-heading flex justify-between items-center\">\n                                <h2>Reduce Fraud<\/h2>\n                                <div class=\"acc-plus\">\n                                    <div class=\"plus-line plus-rt\"><\/div>\n                                    <div class=\"plus-line\"><\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"faq-cont\">\n                                <div class=\"faq-cont-inner\">\n                                    <ul>\n<li>Your actual card number is not stored in your digital wallet and never used when you make a purchase.<\/li>\n<li>A separate token account number is assigned when you load your credentials to the wallet.<\/li>\n<li>Transaction information is encrypted for secure shopping.<\/li>\n<li>Payment codes are unique to every transaction, so they can\u2019t be reused by a fraudster for another purchase.<\/li>\n<li>Your digital wallet is protected by your mobile device\u2019s security settings, so only you can unlock it with your biometrics and passcodes.<\/li>\n<\/ul>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                            <div class=\"faq-acc-item\">\n                            <div class=\"faq-acc-heading flex justify-between items-center\">\n                                <h2>Save Time <\/h2>\n                                <div class=\"acc-plus\">\n                                    <div class=\"plus-line plus-rt\"><\/div>\n                                    <div class=\"plus-line\"><\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"faq-cont\">\n                                <div class=\"faq-cont-inner\">\n                                    <ul>\n<li>Most purchases take just seconds to complete.<\/li>\n<li>Just hold your mobile device over the payment terminal at the store \u2014 checkout is a breeze.<\/li>\n<li>Pay in an instant when you shop online \u2014 simply choose your Hope Credit Union cards from your digital wallet.<\/li>\n<li>You can also make quick in-app purchases with your digital wallet.<\/li>\n<li>Your digital wallet pulls in your credentials automatically \u2014 so you don\u2019t have to look for your card or type in your information.<\/li>\n<\/ul>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                            <div class=\"faq-acc-item\">\n                            <div class=\"faq-acc-heading flex justify-between items-center\">\n                                <h2>Make Contactless Payments<\/h2>\n                                <div class=\"acc-plus\">\n                                    <div class=\"plus-line plus-rt\"><\/div>\n                                    <div class=\"plus-line\"><\/div>\n                                <\/div>\n                            <\/div>\n                            <div class=\"faq-cont\">\n                                <div class=\"faq-cont-inner\">\n                                    <ul>\n<li>You can make a safe, touch-free transaction with your cards.<\/li>\n<li>There\u2019s no need to present a physical card when you\u2019re shopping in person.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n                                <\/div>\n                            <\/div>\n                        <\/div>\n                                    <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n\n<script defer>\n\n    (function () {\n        \n        const accordion = document.querySelectorAll('.faq-acc-heading');\n        const accordionContent = document.querySelectorAll('.faq-cont');\n\n        const plusAcc = document.querySelectorAll('div.plus-rt');\n\n        const maxHeight = \"max-content\";\n\n        accordion.forEach(acc => {\n            acc.addEventListener('click', (e) => {\n\n                let currentContent = acc.nextElementSibling;\n\n                const plus = acc.querySelector('div.plus-rt');\n\n                if (getComputedStyle(currentContent).height == '0px') {\n                    accordionContent.forEach(cont => {\n                        if (cont == currentContent) {\n                            let inner = cont.querySelector('.faq-cont-inner');\n                            let innerHeight = inner.clientHeight;\n                            cont.style.maxHeight = 'calc(' + innerHeight + 'px + 2rem)';\n                            cont.style.height = 'calc(' + innerHeight + 'px + 2rem)';\n                            plus.style.transform = 'rotate(90deg)';\n                            plusAcc.forEach(plusEl => {\n                                if (plusEl != plus) {\n                                    plusEl.style.transform = 'rotate(90deg)';\n                                }else{\n                                    plus.style.transform = 'rotate(0deg)';\n                                }\n                            });\n                        } else {\n                            cont.style.maxHeight = '0px';\n                            cont.style.paddingBottom = '0px';\n                            plus.style.transform = 'rotate(0deg)';\n                        }\n                    });\n                } else {\n                    currentContent.style.maxHeight = '0px';\n                    currentContent.style.height = '0px';\n                    currentContent.style.paddingBottom = '0px';\n                    plus.style.transform = 'rotate(90deg)';\n                }\n\n            });\n        });\n\n    })();\n\n<\/script>\n\n\n<h3 class=\"wp-block-heading\">Start using your digital wallet today!<\/h3>\n\n\n\n<p><\/p>\n\n\n\n<p>Add your Hope Credit Union cards to Apple Pay, Google Pay or Samsung Pay.<br><br>Need help? Click below for additional information to help you get started using your digital wallet.<br><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/support.apple.com\/en-us\/HT204506\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline;\">Get started with Apple Pay<\/span><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/pay.google.com\/about\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline;\">Get started with Google Pay<\/span><\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.samsung.com\/sg\/support\/apps-services\/how-to-set-up-samsung-pay\/\" target=\"_blank\" rel=\"noreferrer noopener\"><span style=\"text-decoration: underline;\">Get started with Samsung Pay<\/span><\/a><\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p><a href=\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallet-frequently-asked-questions\/\" data-type=\"product\" data-id=\"16577\"><span style=\"text-decoration: underline;\">Learn more<\/span><\/a> about digital wallets with our frequently asked questions!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"has-small-font-size\">Google Pay works on Android devices running Android Lollipop 5.0 or above. Google Pay is a trademark of Google LLC.<br><br>Samsung Pay is a registered trademark of Samsung Electronics Co., Ltd. Only compatible with qualifying<\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Add your HOPE cards to Apple, Google, or Samsung Pay digital wallets. Whether you\u2019re freshening up your wardrobe, picking up home improvement supplies, or topping off the tank, we keep you moving with the convenience of digital wallets. Load your HOPE debit and credit cards to an Apple Pay, Google Pay, or Samsung Pay account [&hellip;]<\/p>\n","protected":false},"featured_media":0,"parent":0,"template":"","product_category":[237,243],"class_list":["post-2052","product","type-product","status-publish","hentry","product_category-personal","product_category-tools"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.3 (Yoast SEO v23.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Digital Wallets | Hope Credit Union<\/title>\n<meta name=\"description\" content=\"Access Digital Wallets at HOPE. Learn more about our digital wallet services today.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Digital Wallets\" \/>\n<meta property=\"og:description\" content=\"Access Digital Wallets at HOPE. Learn more about our digital wallet services today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/\" \/>\n<meta property=\"og:site_name\" content=\"Hope CU\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/HopeCreditUnion\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-14T15:35:38+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@hopecreditunion\" \/>\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:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/\",\"url\":\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/\",\"name\":\"Digital Wallets | Hope Credit Union\",\"isPartOf\":{\"@id\":\"https:\/\/www.hopecu.org\/#website\"},\"datePublished\":\"2024-06-05T14:04:47+00:00\",\"dateModified\":\"2024-08-14T15:35:38+00:00\",\"description\":\"Access Digital Wallets at HOPE. Learn more about our digital wallet services today.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.hopecu.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Products\",\"item\":\"https:\/\/www.hopecu.org\/product\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Digital Wallets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hopecu.org\/#website\",\"url\":\"https:\/\/www.hopecu.org\/\",\"name\":\"Hope CU\",\"description\":\"Brighter Futures Begin with HOPE.\",\"publisher\":{\"@id\":\"https:\/\/www.hopecu.org\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hopecu.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.hopecu.org\/#organization\",\"name\":\"Hope CU\",\"url\":\"https:\/\/www.hopecu.org\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hopecu.org\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.hopecu.org\/wp-content\/uploads\/2025\/01\/HOPE-30th-logo_credit-horizontal.png\",\"contentUrl\":\"https:\/\/www.hopecu.org\/wp-content\/uploads\/2025\/01\/HOPE-30th-logo_credit-horizontal.png\",\"width\":2265,\"height\":448,\"caption\":\"Hope CU\"},\"image\":{\"@id\":\"https:\/\/www.hopecu.org\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/HopeCreditUnion\/\",\"https:\/\/x.com\/hopecreditunion\",\"https:\/\/www.instagram.com\/hopecreditunion\",\"https:\/\/www.linkedin.com\/company\/hope-federal-credit-union\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Digital Wallets | Hope Credit Union","description":"Access Digital Wallets at HOPE. Learn more about our digital wallet services today.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/","og_locale":"en_US","og_type":"article","og_title":"Digital Wallets","og_description":"Access Digital Wallets at HOPE. Learn more about our digital wallet services today.","og_url":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/","og_site_name":"Hope CU","article_publisher":"https:\/\/www.facebook.com\/HopeCreditUnion\/","article_modified_time":"2024-08-14T15:35:38+00:00","twitter_card":"summary_large_image","twitter_site":"@hopecreditunion","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/","url":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/","name":"Digital Wallets | Hope Credit Union","isPartOf":{"@id":"https:\/\/www.hopecu.org\/#website"},"datePublished":"2024-06-05T14:04:47+00:00","dateModified":"2024-08-14T15:35:38+00:00","description":"Access Digital Wallets at HOPE. Learn more about our digital wallet services today.","breadcrumb":{"@id":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hopecu.org\/product\/personal\/tools\/digital-wallets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hopecu.org\/"},{"@type":"ListItem","position":2,"name":"Products","item":"https:\/\/www.hopecu.org\/product\/"},{"@type":"ListItem","position":3,"name":"Digital Wallets"}]},{"@type":"WebSite","@id":"https:\/\/www.hopecu.org\/#website","url":"https:\/\/www.hopecu.org\/","name":"Hope CU","description":"Brighter Futures Begin with HOPE.","publisher":{"@id":"https:\/\/www.hopecu.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hopecu.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hopecu.org\/#organization","name":"Hope CU","url":"https:\/\/www.hopecu.org\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hopecu.org\/#\/schema\/logo\/image\/","url":"https:\/\/www.hopecu.org\/wp-content\/uploads\/2025\/01\/HOPE-30th-logo_credit-horizontal.png","contentUrl":"https:\/\/www.hopecu.org\/wp-content\/uploads\/2025\/01\/HOPE-30th-logo_credit-horizontal.png","width":2265,"height":448,"caption":"Hope CU"},"image":{"@id":"https:\/\/www.hopecu.org\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/HopeCreditUnion\/","https:\/\/x.com\/hopecreditunion","https:\/\/www.instagram.com\/hopecreditunion","https:\/\/www.linkedin.com\/company\/hope-federal-credit-union\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/product\/2052","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/types\/product"}],"version-history":[{"count":12,"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/product\/2052\/revisions"}],"predecessor-version":[{"id":19073,"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/product\/2052\/revisions\/19073"}],"wp:attachment":[{"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/media?parent=2052"}],"wp:term":[{"taxonomy":"product_category","embeddable":true,"href":"https:\/\/www.hopecu.org\/wp-json\/wp\/v2\/product_category?post=2052"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}