{"id":26710,"date":"2026-04-19T20:56:08","date_gmt":"2026-04-19T17:56:08","guid":{"rendered":"https:\/\/www.ikariancentre.com\/greek-lessons\/?page_id=26710"},"modified":"2026-04-20T14:12:35","modified_gmt":"2026-04-20T11:12:35","slug":"subscribe","status":"publish","type":"page","link":"https:\/\/www.ikariancentre.com\/greek-lessons\/subscribe\/","title":{"rendered":"Subscribe in our asynchronous courses"},"content":{"rendered":"\n<p>Use the form below to subscribe or renew your subscription to our asynchronous Greek language courses<\/p>\n\n\n<form enctype=\"multipart\/form-data\" data-mollie-forms=\"2.9.3\" method=\"post\" id=\"rfmp_26716\" class=\"\"><input type=\"hidden\" id=\"mollie_forms_26716_nonce\" name=\"mollie_forms_26716_nonce\" value=\"ecfaf3302e\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/greek-lessons\/wp-json\/wp\/v2\/pages\/26710\" \/><input type=\"hidden\" name=\"mollie-forms-post\" value=\"26716\"><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" ><label for=\"form_26716_field_0\">Name <span class=\"mollie-forms-required\">*<\/span><\/label><br><input type=\"text\" name=\"form_26716_field_0\" id=\"form_26716_field_0\" value label=\"Name\" class=\"1\" required style=\"width: 100%\"><\/div><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" ><label for=\"form_26716_field_1\">Email <span class=\"mollie-forms-required\">*<\/span><\/label><br><input type=\"email\" name=\"form_26716_field_1\" id=\"form_26716_field_1\" value label=\"Email\" class=\"2\" required style=\"width: 100%\"><\/div><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" ><label for=\"form_26716_field_2\"><\/label><br><select name=\"rfmp_priceoptions_26716\" onchange=\"mollie_forms_recurring_methods_26716();mollie_forms_26716_totals();\" id=\"form_26716_field_2\" class required style=\"width: 100%;\"><option   data-frequency=\"once\" \n                                    data-freq=\"\" \n                                    data-pricetype=\"fixed\" \n                                    data-price=\"120.00\" \n                                    data-vat=\"\" \n                                    value=\"2\" >\n                                Online lessons - subscription X 2 mohtns (&euro; 120,00)\n                          <\/option><\/select><p id=\"rfmp_open_amount_26716\" style=\"display:none;\">\n                    <label>Amount \n                        <span style=\"color:red;\">*<\/span><br>\n                        <span class=\"rfmp_currency_26716\">&euro;<\/span> \n                        <input type=\"number\" step=\"any\" value=\"\" onchange=\"mollie_forms_26716_totals();\" onkeyup=\"mollie_forms_26716_totals();\" name=\"rfmp_amount_26716\"> \n                        <span id=\"rfmp_amount_freq_26716\"><\/span>\n                    <\/label>\n                    <input type=\"hidden\" name=\"rfmp_amount_required_26716\" id=\"rfmp_open_amount_required_26716\" value=\"0\">\n                  <\/p>\n        <script>\n        window.onload = setTimeout(mollie_forms_26716_totals, 100);\n        function mollie_forms_26716_totals() {\n            var priceoption = document.getElementsByName(\"rfmp_priceoptions_26716\");\n            var quantities  = document.getElementsByClassName(\"rfmp_priceoptions_26716_quantity\");\n            var subtotal = 0, total = 0, vat = 0;\n            \n            \n            \/\/ Add shipping costs to total\n            var shippingCosts = \"\";\n            if (shippingCosts) {\n                var shippingVat = 0.21 * parseFloat(shippingCosts);\n                vat   += shippingVat;\n                total += parseFloat(shippingCosts);\n                subtotal += parseFloat(shippingCosts);\n                \n            }\n            \n            if (0 in priceoption) {\n                var openAmount  = document.getElementsByName(\"rfmp_amount_26716\");\n            \n                \/\/ single price option\n                if (priceoption[0].tagName == \"INPUT\") {\n                    for (var i = 0, length = priceoption.length; i < length; i++) {\n                        if (priceoption[i].checked) {\n                        \n                            if (priceoption[i].dataset.pricetype == \"open\") {\n                                openAmount[0].setAttribute(\"min\", isNaN(priceoption[i].dataset.price) ? 0 : priceoption[i].dataset.price);\n                                var optionPrice = parseFloat(openAmount[0].value);\n                            } else {\n                                openAmount[0].removeAttribute(\"min\");\n                                var optionPrice = parseFloat(priceoption[i].dataset.price);\n                            }\n\n                            if (optionPrice <= 0 || isNaN(optionPrice)) {\n                                break;\n                            }\n                            \n                            var optionVat = (parseInt(priceoption[i].dataset.vat) \/ 100) * optionPrice;\n                        \n                            vat += optionVat;\n                            total += optionPrice;\n                            subtotal += optionPrice;\n                            \n                            break;\n                        }\n                    }\n                } else {\n                    if (priceoption[0].options[priceoption[0].selectedIndex].dataset.pricetype == \"open\") {\n                        openAmount[0].setAttribute(\"min\", isNaN(priceoption[0].options[priceoption[0].selectedIndex].dataset.price) ? 0 : priceoption[0].options[priceoption[0].selectedIndex].dataset.price);\n                        var optionPrice = parseFloat(openAmount[0].value);\n                    } else {\n                        openAmount[0].removeAttribute(\"min\");\n                        var optionPrice = parseFloat(priceoption[0].options[priceoption[0].selectedIndex].dataset.price);\n                    }\n                            \n                    if (optionPrice > 0 || isNaN(optionPrice)) {\n                        var optionVat = (parseInt(priceoption[0].options[priceoption[0].selectedIndex].dataset.vat) \/ 100) * optionPrice;\n                        vat   += optionVat;\n                        total += optionPrice;\n                        subtotal += optionPrice;\n                        \n                    }\n                }\n            } else if (quantities) {\n                \/\/ multiple price options with quantity\n                for (var i = 0; i < quantities.length; i++) {\n                    var q = parseInt(quantities[i].value);\n                    if (q <= 0 || isNaN(q)) {\n                        continue;\n                    }\n                    \n                    var optionPrice = parseFloat(quantities[i].dataset.price) * q;\n                    if (optionPrice > 0 || isNaN(optionPrice)) {\n                        var optionVat = (parseInt(quantities[i].dataset.vat) \/ 100) * optionPrice;\n                        vat   += optionVat;\n                        total += optionPrice;\n                        subtotal += optionPrice;\n                        \n                    }\n                }\n            }\n            \n            \/\/ payment method extra costs\n            var methods = document.getElementsByName(\"rfmp_payment_method_26716\");\n            if (total > 0) {\n\t            if (0 in methods) {\n\t                if (methods[0].tagName == \"INPUT\") {\n\t                    \/\/ radio buttons\n\t                    for (var i = 0; i < methods.length; i++) {\n\t                        if (methods[i].checked) {\n\t                            var methodAmount = ((parseInt(methods[i].dataset.variable) \/ 100) * total) + parseFloat(methods[i].dataset.fixed);\n\t                            var methodVat = 0.21 * methodAmount;\n\t                            vat   += methodVat;\n\t                            total += methodAmount;\n\t                            subtotal += methodAmount;\n\t                            \n\t                            break;\n\t                        }\n\t                    }\n\t                } else {\n\t                    \/\/ dropdown\n\t                    var methodAmount = ((parseInt(methods[0].options[methods[0].selectedIndex].dataset.variable) \/ 100) * total) + parseFloat(methods[0].options[methods[0].selectedIndex].dataset.fixed);\n\t                    var methodVat = 0.21 * methodAmount;\n\t                    vat   += methodVat;\n\t                    total += methodAmount;\n\t                    subtotal += methodAmount;\n\t                    \n\t                }\n\t            }\n            }\n\n            \/\/ Display subtotal\n            var subtotalValue = document.getElementById(\"rfmp_totals_26716_subtotal_value\");\n            if (subtotalValue) {\n                var subtotalAmount = subtotal.toFixed(2) > 0 ? subtotal.toFixed(2) : \"0.00\";\n                subtotalValue.innerHTML = subtotalAmount.replace(\".\", \",\");\n            }\n            \n            \/\/ Display total\n            var totalValue = document.getElementById(\"rfmp_totals_26716_total_value\");\n            if (totalValue) {\n                var totalAmount = total.toFixed(2) > 0 ? total.toFixed(2) : \"0.00\";\n                totalValue.innerHTML = totalAmount.replace(\".\", \",\");\n            }\n            \n            \/\/ Display VAT\n            var totalVatValue = document.getElementById(\"rfmp_totals_26716_vat_value\");\n            if (totalVatValue) {\n                var totalVat = vat.toFixed(2) > 0 ? vat.toFixed(2) : \"0.00\";\n                totalVatValue.innerHTML = totalVat.replace(\".\", \",\");\n            }\n            \n            \n            if (total <= 0 || isNaN(total)) {\n                document.getElementById(\"payment_methods_26716\").style.display = \"none\";\n            } else {\n                document.getElementById(\"payment_methods_26716\").style.display = \"block\";\n            }\n        }\n        <\/script><\/div><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" id=\"payment_methods_26716\"><label for=\"form_26716_field_3\">Payment method <span class=\"mollie-forms-required\">*<\/span><\/label><br>\n            <script>\n            window.onload = setTimeout(mollie_forms_recurring_methods_26716, 100);\n            function mollie_forms_recurring_methods_26716() {\n                var priceoptions = document.getElementsByName(\"rfmp_priceoptions_26716\");\n                var freq = \"\";\n                var frequency = \"once\";\n                if (0 in priceoptions) {\n                    if (priceoptions[0].tagName == \"INPUT\") {\n                        for (var i = 0, length = priceoptions.length; i < length; i++) {\n                            if (priceoptions[i].checked) {\n                                frequency = priceoptions[i].dataset.frequency;\n                                var pricetype = priceoptions[i].dataset.pricetype;\n                                freq = priceoptions[i].dataset.freq;\n                                break;\n                            }\n                        }\n                    } else {\n                        frequency = priceoptions[0].options[priceoptions[0].selectedIndex].dataset.frequency ? priceoptions[0].options[priceoptions[0].selectedIndex].dataset.frequency : \"once\";\n                        var pricetype = priceoptions[0].options[priceoptions[0].selectedIndex].dataset.pricetype;\n                        freq = priceoptions[0].options[priceoptions[0].selectedIndex].dataset.freq;\n                    }\n                } else {\n                    var quantities = document.getElementsByClassName(\"rfmp_priceoptions_26716_quantity\");\n                    var pricetype = \"fixed\";\n                    frequency = \"once\";\n                    for (var i = 0, length = quantities.length; i < length; i++) {\n                        if (quantities[i].value > 0) {\n                            if (quantities[i].dataset.frequency != \"once\") {\n                                frequency = \"recurring\";\n                            }\n                        }\n                    }\n                }\n\n                var checkbox = document.getElementsByName(\"rfmp_checkbox_26716\")[0];\n                if (frequency==\"once\") {\n                    checkbox.removeAttribute(\"required\");\n                } else {\n                    checkbox.setAttribute(\"required\", \"required\");\n                }\n\n                document.getElementById(\"rfmp_checkbox_26716\").style.display = (frequency==\"once\" ? \"none\" : \"block\");\n                document.getElementById(\"rfmp_checkbox_hidden_26716\").value = (frequency==\"once\" ? 0 : 1);\n                document.getElementById(\"rfmp_open_amount_26716\").style.display = (pricetype==\"open\" ? \"block\" : \"none\");\n                document.getElementById(\"rfmp_open_amount_required_26716\").value = (pricetype==\"open\" ? 1 : 0);\n                document.getElementById(\"rfmp_amount_freq_26716\").innerHTML = freq;\n                \n                if (location.protocol === \"https:\" && window.ApplePaySession && window.ApplePaySession.canMakePayments()) {\n                    \/\/\n                } else if (document.getElementById(\"rfmp_pm_applepay_26716\") !== null) {\n                    document.getElementById(\"rfmp_pm_applepay_26716\").remove();\n                }\n                \n                    document.getElementById(\"rfmp_pm_creditcard_26716\").style.display = \"block\";\nif (document.getElementById(\"rfmp_pm_banktransfer_26716\") !== null){\n    document.getElementById(\"rfmp_pm_banktransfer_26716\").style.display = (frequency!=\"once\" ? \"none\" : \"block\");\n}\n\n            }\n            <\/script><select id=\"form_26716_field_3\" label=\"Payment method\" class required name=\"rfmp_payment_method_26716\" style=\"width: 100%;\" onchange=\"mollie_forms_26716_totals();\"><option    id=\"rfmp_pm_creditcard_26716\" \n                                                value=\"creditcard\"\n                                                data-fixed=\"0\" \n                                                data-variable=\"3\" \n                                                >\n                                        Card (+ 3%)\n                                     <\/option><option    id=\"rfmp_pm_banktransfer_26716\" \n                                                value=\"banktransfer\"\n                                                data-fixed=\"0\" \n                                                data-variable=\"0\" \n                                                >\n                                        Bank transfer\n                                     <\/option><\/select><input type=\"hidden\" id=\"rfmp_checkbox_hidden_26716\" name=\"rfmp_checkbox_hidden_26716\" value=\"0\"><br><label id=\"rfmp_checkbox_26716\" style=\"display:none;\">\n                            <input type=\"checkbox\" name=\"rfmp_checkbox_26716\" value=\"1\">I hereby give authorization to collect the recurring amount from my account periodically.\n                         <\/label><\/div><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" ><label for=\"form_26716_field_4\"><\/label><br><table id=\"form_26716_field_4\" label class required><tr id=\"rfmp_totals_26716_total\">\n                    <td><strong>Total<\/strong><\/td>\n                    <td><strong>&euro; <span id=\"rfmp_totals_26716_total_value\"><\/span><\/strong><\/td>\n                  <\/tr><\/table><\/div><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" ><\/div><div class=\"mollie_forms_field_row\" style=\"margin:10px 0\" ><br><button type=\"submit\" name=\"form_26716_field_6\" id=\"form_26716_field_6\" value label=\"Submit\" class required>Submit<\/button><\/div><\/form>\n","protected":false},"excerpt":{"rendered":"<p>Use the form below to subscribe or renew your subscription to our asynchronous Greek language courses<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-26710","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/pages\/26710","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/comments?post=26710"}],"version-history":[{"count":3,"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/pages\/26710\/revisions"}],"predecessor-version":[{"id":26718,"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/pages\/26710\/revisions\/26718"}],"wp:attachment":[{"href":"https:\/\/www.ikariancentre.com\/greek-lessons\/wp-json\/wp\/v2\/media?parent=26710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}