{"id":42,"date":"2025-01-01T03:32:39","date_gmt":"2025-01-01T03:32:39","guid":{"rendered":"https:\/\/alternative-medizin.net\/?page_id=42"},"modified":"2025-02-16T18:30:07","modified_gmt":"2025-02-16T18:30:07","slug":"membership-join","status":"publish","type":"page","link":"https:\/\/alternative-medizin.net\/?page_id=42","title":{"rendered":"REGISTRIEREN"},"content":{"rendered":"\n<div class=\"wp-block-uagb-container uagb-block-2e6f497f alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\"><br>Die Registrierung<strong> f\u00fcr den vollst\u00e4ndigen Zugang zu allen Informationen <\/strong>auf dieser Webseite <strong>ist EINMALIG KOSTENPFLICHTIG<\/strong>, und danach zeitlich unbegrenzt g\u00fcltig.<br><br><strong>Eine Mitgliedschaft kostet einmalig nur 12,00 \u20ac. <\/strong><\/p>\n\n\n\n<div class=\"wp-block-uagb-separator uagb-block-6da454da\"><div class=\"wp-block-uagb-separator__inner\" style=\"--my-background-image:\"><\/div><\/div>\n\n\n\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\"><b><br>Nach Abschluss des Bezahlvorgangs erfolgt die direkte Weiterleitung zur Erstellung eines Mitgliedskontos f\u00fcr den vollen Zugang.<\/b><\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"swpm-payment-button\">    <div id=\"swpm-button-wrapper-48\" class=\"swpm-button-wrapper swpm-paypal-buy-now-button-wrapper\">\n\n    <!-- PayPal button container where the button will be rendered -->\n    <div id=\"swpm_paypal_button_0\" style=\"width: 300px;\"><\/div>\n    <!-- Some additiona hidden input fields -->\n    <input type=\"hidden\" id=\"swpm_paypal_button_0-custom-field\" name=\"custom\" value=\"subsc_ref=2&amp;user_ip=216.73.216.68\">\n\n    <script type=\"text\/javascript\">\n        document.addEventListener( \"swpm_paypal_sdk_loaded\", function() { \n            \/\/Anything that goes here will only be executed after the PayPal SDK is loaded.\n            console.log('PayPal JS SDK is loaded.');\n\n            var js_currency_code = 'EUR';\n            var js_payment_amount = 11.90;\n            var js_quantity = 1;\n            var js_digital_goods_enabled = 1;\n\n            const paypalButtonsComponent = paypal.Buttons({\n                \/\/ optional styling for buttons\n                \/\/ https:\/\/developer.paypal.com\/docs\/checkout\/standard\/customize\/buttons-style-guide\/\n                style: {\n                    color: 'blue',\n                    shape: 'pill',\n                    height: 35,\n                    label: 'pay',\n                    layout: 'horizontal',\n                },\n\n                \/\/ Setup the transaction.\n                createOrder: async function() {\n                    \/\/ Create the order in PayPal using the PayPal API.\n                    \/\/ https:\/\/developer.paypal.com\/docs\/checkout\/standard\/integrate\/\n                    \/\/ The server-side Create Order API is used to generate the Order. Then the Order-ID is returned.                    \n                    console.log('Setting up the AJAX request for create-order call.');\n                    let pp_bn_data = {};\n                    pp_bn_data.button_id = '48';\n                    pp_bn_data.on_page_button_id = 'swpm_paypal_button_0';\n                    pp_bn_data.item_name = 'Vollzugang Bezahlung';\n                    let post_data = 'action=swpm_pp_create_order&data=' + JSON.stringify(pp_bn_data) + '&_wpnonce=6c52d22109';\n                    try {\n                        \/\/ Using fetch for AJAX request. This is supported in all modern browsers.\n                        const response = await fetch(\"https:\/\/alternative-medizin.net\/wp-admin\/admin-ajax.php\", {\n                            method: \"post\",\n                            headers: {\n                                'Content-Type': 'application\/x-www-form-urlencoded'\n                            },\n                            body: post_data\n                        });\n\n                        const response_data = await response.json();\n\n                        if (response_data.order_id) {\n                            console.log('Create-order API call to PayPal completed successfully.');\n                            \/\/If we need to see the order details, uncomment the following line.\n                            \/\/const order_data = response_data.order_data;\n                            \/\/console.log('Order data: ' + JSON.stringify(order_data));\n                            return response_data.order_id;\n                        } else {\n                            const error_message = JSON.stringify(response_data);\n                            console.error('Error occurred during the create-order API call to PayPal. ' + error_message);\n                            throw new Error(error_message);\n                        }\n                    } catch (error) {\n                        console.error(error);\n                        alert('Could not initiate PayPal Checkout...\\n\\n' + JSON.stringify(error));\n                    }\n                },\n    \n                \/\/ handle the onApprove event\n                onApprove: async function(data, actions) {\n                    console.log('Successfully created a transaction.');\n\n                    \/\/Show the spinner while we process this transaction.\n                    const pp_button_container = document.getElementById('swpm_paypal_button_0');\n                    const pp_button_container_wrapper = document.getElementById('swpm-button-wrapper-48');\n                    const pp_button_spinner_container = pp_button_container_wrapper.querySelector('.swpm-pp-button-spinner-container');\n                    pp_button_container.style.display = 'none'; \/\/Hide the buttons\n                    pp_button_spinner_container.style.display = 'inline-block'; \/\/Show the spinner.\n\n                    \/\/ Capture the order in PayPal using the PayPal API.\n                    \/\/ https:\/\/developer.paypal.com\/docs\/checkout\/standard\/integrate\/\n                    \/\/ The server-side capture-order API is used. Then the Capture-ID is returned.\n                    console.log('Setting up the AJAX request for capture-order call.');\n                    let pp_bn_data = {};\n                    pp_bn_data.order_id = data.orderID;\n                    pp_bn_data.button_id = '48';\n                    pp_bn_data.on_page_button_id = 'swpm_paypal_button_0';\n                    pp_bn_data.item_name = 'Vollzugang Bezahlung';\n\n                    \/\/Add custom_field data. It is important to encode the custom_field data so it doesn't mess up the data with & character.\n                    const custom_data = document.getElementById('swpm_paypal_button_0-custom-field').value;\n                    pp_bn_data.custom_field = encodeURIComponent(custom_data);\n                    \n                    const post_data = new URLSearchParams({\n                        action: 'swpm_pp_capture_order',\n                        data: JSON.stringify(pp_bn_data),\n                        _wpnonce: '6c52d22109',\n                    }).toString();\n                    \n                    try {\n                        const response = await fetch(\"https:\/\/alternative-medizin.net\/wp-admin\/admin-ajax.php\", {\n                            method: \"post\",\n                            headers: {\n                                'Content-Type': 'application\/x-www-form-urlencoded'\n                            },\n                            body: post_data\n                        });\n\n                        const response_data = await response.json();\n                        const txn_data = response_data.txn_data;\n                        const error_detail = txn_data?.details?.[0];\n                        const error_msg = response_data.error_msg;\/\/Our custom error message.\n                        \/\/ Three cases to handle:\n                        \/\/ (1) Recoverable INSTRUMENT_DECLINED -> call actions.restart()\n                        \/\/ (2) Other non-recoverable errors -> Show a failure message\n                        \/\/ (3) Successful transaction -> Show confirmation or thank you message\n\n                        if (response_data.capture_id) {\n                            \/\/ Successful transaction -> Show confirmation or thank you message\n                            console.log('Capture-order API call to PayPal completed successfully.');\n\n                            \/\/Redirect to the Thank you page URL if it is set.\n                            return_url = 'https:\/\/alternative-medizin.net\/?page_id=47';\n                            if( return_url ){\n                                \/\/redirect to the Thank you page URL.\n                                console.log('Redirecting to the Thank you page URL: ' + return_url);\n                                window.location.href = return_url;\n                                return;\n                            } else {\n                                \/\/No return URL is set. Just show a success message.\n                                txn_success_msg = 'Transaktion abgeschlossen!';\n                                alert(txn_success_msg);\n                            }\n\n                        } else if (error_detail?.issue === \"INSTRUMENT_DECLINED\") {\n                            \/\/ Recoverable INSTRUMENT_DECLINED -> call actions.restart()\n                            console.log('Recoverable INSTRUMENT_DECLINED error. Calling actions.restart()');\n                            return actions.restart();\n                        } else if ( error_msg && error_msg.trim() !== '' ) {\n                            \/\/Our custom error message from the server.\n                            console.error('Error occurred during PayPal checkout process.');\n                            console.error( error_msg );\n                            alert( error_msg );\n                        } else {\n                            \/\/ Other non-recoverable errors -> Show a failure message\n                            console.error('Non-recoverable error occurred during PayPal checkout process.');\n                            console.error( error_detail );\n                            \/\/alert('Error occurred with the transaction. Enable debug logging to get more details.\\n\\n' + JSON.stringify(error_detail));\n                        }\n\n                        \/\/Return the button and the spinner back to their orignal display state.\n                        pp_button_container.style.display = 'block'; \/\/ Show the buttons\n                        pp_button_spinner_container.style.display = 'none'; \/\/ Hide the spinner\n\n                    } catch (error) {\n                        console.error(error);\n                        alert('PayPal returned an error! Transaction could not be processed. Enable the debug logging feature to get more details...\\n\\n' + JSON.stringify(error));\n                    }\n                },\n    \n                \/\/ handle unrecoverable errors\n                onError: function(err) {\n                    console.error('An error prevented the user from checking out with PayPal. ' + JSON.stringify(err));\n                    alert( 'Fehler beim Checkout-Prozess von PayPal.\\n\\n' + JSON.stringify(err) );\n                },\n\n                \/\/ handle onCancel event\n                onCancel: function(data) {\n                    console.log('Checkout operation cancelled by the customer.');\n                    \/\/Return to the parent page which the button does by default.\n                }\n            });\n    \n            paypalButtonsComponent\n                .render('#swpm_paypal_button_0')\n                .catch((err) => {\n                    console.error('PayPal Buttons failed to render');\n                });\n\n        });\n    <\/script>\n    <style>\n        @keyframes swpm-pp-button-spinner {\n            to {transform: rotate(360deg);}\n        }\n        .swpm-pp-button-spinner {\n            margin: 0 auto;\n            text-indent: -9999px;\n            vertical-align: middle;\n            box-sizing: border-box;\n            position: relative;\n            width: 60px;\n            height: 60px;\n            border-radius: 50%;\n            border: 5px solid #ccc;\n            border-top-color: #0070ba;\n            animation: swpm-pp-button-spinner .6s linear infinite;\n        }\n        .swpm-pp-button-spinner-container {\n            width: 100%;\n            text-align: center;\n            margin-top:10px;\n            display: none;\n        }\n    <\/style>\n    <div class=\"swpm-pp-button-spinner-container\">\n        <div class=\"swpm-pp-button-spinner\"><\/div>\n    <\/div>\n    <\/div><!-- end of .swpm-button-wrapper -->\n    <\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"><\/div>\n<\/div>\n\n\n\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\">Sollte nach erfolgreichem Bezahlvorgang die Weiterleitung zur Anmeldung fehl schlagen (in seltenen F\u00e4llen kann dies aufgrund von Sicherheitseinstellungen des Nutzers passieren), oder sonstige Probleme auftreten, senden sie eine E-Mail mit Angabe ihrer Zahlungsinformationen an:&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\" style=\"margin-right:var(--wp--preset--spacing--80);margin-left:var(--wp--preset--spacing--80)\"><img loading=\"lazy\" decoding=\"async\" width=\"588\" height=\"121\" src=\"https:\/\/alternative-medizin.net\/wp-content\/uploads\/2025\/01\/EMAILGRAFIK-BUYMAIL.jpg\" alt=\"\" class=\"wp-image-304\" style=\"width:194px;height:auto\" srcset=\"https:\/\/alternative-medizin.net\/wp-content\/uploads\/2025\/01\/EMAILGRAFIK-BUYMAIL.jpg 588w, https:\/\/alternative-medizin.net\/wp-content\/uploads\/2025\/01\/EMAILGRAFIK-BUYMAIL-300x62.jpg 300w\" sizes=\"auto, (max-width: 588px) 100vw, 588px\" \/><\/figure>\n\n\n\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\">Wir melden uns in der Regel innerhalb von 24 Stunden und beheben eventuelle Probleme.<\/p>\n\n\n\n<div class=\"wp-block-uagb-separator uagb-block-6ea75d05\"><div class=\"wp-block-uagb-separator__inner\" style=\"--my-background-image:\"><\/div><\/div>\n\n\n\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\"><br>Leider lassen sich Inhalte innerhalb der deutschsprachigen Rechtsr\u00e4ume nur noch einigerma\u00dfen rechtssicher teilen, indem man sich von den geteilten Inhalten distanziert.<br><br>Daher wird hier ausdr\u00fccklich erkl\u00e4rt, dass diese Webseite nur allgemein verf\u00fcgbare Informationen zentral sammelt, und als eine Art Register dieser Informationen fungiert. Diese Sammlung von Inhalten und auch der Verweis auf deren Ursprung stellen keinerlei Bewertung \u00fcber deren Richtigkeit dar. Eine solche Bewertung kann nur durch fachkundige Personen erfolgen. F\u00fcr die Nutzung der Internetseite und der zur Verf\u00fcgung gestellten Informationen gilt daher:<\/p>\n\n\n\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\"><strong>Disclaimer \/ Haftungsausschluss<\/strong><\/p>\n\n\n\n<p style=\"padding-right:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--70)\">Auf dieser ONLINE-PLATTFORM werden ausschlie\u00dflich Inhalte und Informationen dargestellt, welche auf wissenschaftlichen Hinweisen oder Belegen beruhen, und f\u00fcr welche Erfahrungswerte von Anwendern verf\u00fcgbar sind oder geschildert werden.<br><strong>ALLE AUF DIESER PLATFORM DARGESTELLTEN INFORMATIONEN BASIEREN AUF BELEGEN UND UNTERSUCHUNGEN NACH WISSENSCHAFTLICHEN METHODEN. DIESE QUELLEN SIND JEWEILS ANGEGEBEN, ENTWEDER DURCH VERWEIS \/ VERLINKUNG DER QUELLE, DURCH ZITAT MIT QUELLENANGABE, DURCH ZUSAMMENFASSENDE DARSTELLUNG MIT QUELLENANGABE ODER DURCH DARSTELLUNG DER GESAMTEN QUELLE.<\/strong><br>Dargestellte<strong> ERFAHRUNGEN DRITTER k\u00f6nnen durch den Betreiber dieser Internetseite nicht auf ihre Richtigkeit und Wahrheit \u00fcberpr\u00fcft werden<\/strong> und sind daher nicht als Handlungsempfehlungen zu betrachten.<br>Eine Nutzung oder Anwendung jeglicher \u00fcber diese Internetseite zug\u00e4nglich gemachten Informationen erfolgt ausschlie\u00dflich auf eigene Gefahr und Verantwortung.<br>Auch geteilte Inhalte, welche im Original von fachkundigen Personen erstellt wurden, k\u00f6nnen m\u00f6glicherweise nicht richtig sein \u2013 auch die Wissenschaft unterliegt regelm\u00e4\u00dfig Irrt\u00fcmern.<br><strong>Die Inhalte dieser Internetseite ersetzen keine \u00e4rztliche Diagnose und keine \u00e4rztliche Behandlung.<\/strong><br><strong>Die Inhalte dieser Webseite stellen keine Handlungsaufforderungen, Handlungsanweisungen, Therapie-, Selbstmedikations- oder Behandlungsempfehlungen dar.<\/strong><br><strong>Vor einer Anwendung jeglicher auf dieser Internetseite dargestellten oder zug\u00e4nglich gemachten Informationen fragen sie einen Arzt und \/ oder einen Apotheker.<\/strong><br><strong>Sollten Sie unter gesundheitlichen Beeintr\u00e4chtigungen leiden, konsultieren sie einen Arzt oder zugelassenen Therapeuten f\u00fcr eine Diagnose und Therapieempfehlung.<\/strong><\/p>\n<\/div><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Die Registrierung f\u00fcr den vollst\u00e4ndigen Zugang zu allen Informationen auf dieser Webseite ist EINMALIG KOSTENPFLICHTIG, und danach zeitlich unbegrenzt g\u00fcltig. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","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":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","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":"default","ast-page-background-enabled":"default","ast-page-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":"","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-4)","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-4)","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-4)","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-42","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"bockulrich@ymail.com","author_link":"https:\/\/alternative-medizin.net\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"Die Registrierung f\u00fcr den vollst\u00e4ndigen Zugang zu allen Informationen auf dieser Webseite ist EINMALIG KOSTENPFLICHTIG, und danach zeitlich unbegrenzt g\u00fcltig. [&hellip;]","_links":{"self":[{"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=\/wp\/v2\/pages\/42","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=42"}],"version-history":[{"count":30,"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=\/wp\/v2\/pages\/42\/revisions"}],"predecessor-version":[{"id":706,"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=\/wp\/v2\/pages\/42\/revisions\/706"}],"wp:attachment":[{"href":"https:\/\/alternative-medizin.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=42"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}