{"id":940,"date":"2019-10-12T19:35:34","date_gmt":"2019-10-13T00:35:34","guid":{"rendered":"http:\/\/crochetmaven.com\/?page_id=940"},"modified":"2019-10-12T19:54:40","modified_gmt":"2019-10-13T00:54:40","slug":"keep-me-posted","status":"publish","type":"page","link":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/","title":{"rendered":"Keep me posted"},"content":{"rendered":"\n            <div id=\"mailerlite-form_1\" data-temp-id=\"6a8644cb7c066\">\n                <div class=\"mailerlite-form\">\n                    <form action=\"\" method=\"post\" novalidate>\n                                                    <div class=\"mailerlite-form-title\"><h3>Newsletter signup<\/h3><\/div>\n                                                <div class=\"mailerlite-form-description\"><p>Subscribe<\/p>\n<\/div>\n                        <div class=\"mailerlite-form-inputs\">\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-email\">Email<\/label>\n                                    <input id=\"mailerlite-1-field-email\"\n                                           type=\"email\" required=\"required\"                                            name=\"form_fields[email]\"\n                                           placeholder=\"Email\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-name\">Name<\/label>\n                                    <input id=\"mailerlite-1-field-name\"\n                                           type=\"text\"                                            name=\"form_fields[name]\"\n                                           placeholder=\"Name\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-last_name\">Last name<\/label>\n                                    <input id=\"mailerlite-1-field-last_name\"\n                                           type=\"text\"                                            name=\"form_fields[last_name]\"\n                                           placeholder=\"Last name\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-country\">Country<\/label>\n                                    <input id=\"mailerlite-1-field-country\"\n                                           type=\"text\"                                            name=\"form_fields[country]\"\n                                           placeholder=\"Country\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-city\">City<\/label>\n                                    <input id=\"mailerlite-1-field-city\"\n                                           type=\"text\"                                            name=\"form_fields[city]\"\n                                           placeholder=\"City\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-state\">State<\/label>\n                                    <input id=\"mailerlite-1-field-state\"\n                                           type=\"text\"                                            name=\"form_fields[state]\"\n                                           placeholder=\"State\"\/>\n                                <\/div>\n                                                                                            <div class=\"mailerlite-form-field\">\n                                    <label for=\"mailerlite-1-field-zip\">ZIP<\/label>\n                                    <input id=\"mailerlite-1-field-zip\"\n                                           type=\"text\"                                            name=\"form_fields[zip]\"\n                                           placeholder=\"ZIP\"\/>\n                                <\/div>\n                                                        <div class=\"mailerlite-form-loader\">Untangling yarn<\/div>\n                            <div class=\"mailerlite-subscribe-button-container\">\n                                <button class=\"mailerlite-subscribe-submit\" type=\"submit\">\n                                    Get notified of new posts!                                <\/button>\n                            <\/div>\n                            <input type=\"hidden\" name=\"form_id\" value=\"1\"\/>\n                            <input type=\"hidden\" name=\"action\" value=\"mailerlite_subscribe_form\"\/>\n                            <input type=\"hidden\" name=\"ml_nonce\" value=\"17afd54190\"\/>\n                        <\/div>\n                        <div class=\"mailerlite-form-response\">\n                                                            <h4><p><em><strong><span style=\"color: #0000ff\">Thank you for signing up!<\/span><\/strong><\/em><\/p>\n<\/h4>\n                                                    <\/div>\n                    <\/form>\n                <\/div>\n            <\/div>\n        <script type=\"text\/javascript\" src='https:\/\/crochetmaven.com\/wp-content\/plugins\/official-mailerlite-sign-up-forms\/assets\/js\/localization\/validation-messages.js'><\/script>\n         <script type=\"text\/javascript\"> var selectedLanguage = \"\"; var validationMessages = messages[\"en\"]; if(selectedLanguage) { validationMessages = messages[selectedLanguage]; } window.addEventListener(\"load\", function () { var form_container = document.querySelector(`#mailerlite-form_1[data-temp-id=\"6a8644cb7c066\"] form`); let submitButton = form_container.querySelector('.mailerlite-subscribe-submit'); submitButton.disabled = true; fetch('https:\/\/crochetmaven.com\/wp-admin\/admin-ajax.php', { method: 'POST', headers:{ 'Content-Type': 'application\/x-www-form-urlencoded', }, body: new URLSearchParams({ \"action\" : \"ml_create_nonce\", \"ml_nonce\" : form_container.querySelector(\"input[name='ml_nonce']\").value }) }) .then((response) => response.json()) .then((json) => { if(json.success) { form_container.querySelector(\"input[name='ml_nonce']\").value = json.data.ml_nonce; submitButton.disabled = false; } }) .catch((error) => { console.error('Error:', error); }); form_container.addEventListener('submit', (e) => { e.preventDefault(); let data = new URLSearchParams(new FormData(form_container)).toString(); let validationError = false; document.querySelectorAll('.mailerlite-form-error').forEach(el => el.remove()); Array.from(form_container.elements).forEach((input) => { if(input.type !== 'hidden') { if(input.required) { if(input.value == '') { validationError = true; let error = document.createElement(\"span\"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.required; input.after(error); return false; } } if((input.type == \"email\") && (!validateEmail(input.value))) { validationError = true; let error = document.createElement(\"span\"); error.className = 'mailerlite-form-error'; error.textContent = validationMessages.email; input.after(error); return false; } } }); if(validationError) { return false; } fade.out(form_container.querySelector('.mailerlite-subscribe-button-container'), () => { fade.in(form_container.querySelector('.mailerlite-form-loader')); }); fetch('https:\/\/crochetmaven.com\/wp-admin\/admin-ajax.php', { method: 'POST', headers:{ 'Content-Type': 'application\/x-www-form-urlencoded', }, body: data }) .then((response) => { fade.out(form_container.querySelector('.mailerlite-form-inputs'), () => { fade.in(form_container.querySelector('.mailerlite-form-response')); }); }) .catch((error) => { console.error('Error:', error); }); }); }, false); var fade = { out: function(el, fn = false) { var fadeOutEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 1; } if (el.style.opacity > 0) { el.style.opacity -= 0.1; } else { el.style.display = 'none'; clearInterval(fadeOutEffect); } }, 50); if( typeof (fn) == 'function') { fn(); } }, in: function(el) { var fadeInEffect = setInterval(function () { if (!el.style.opacity) { el.style.opacity = 0; } if (el.style.opacity < 1) { el.style.opacity = Number(el.style.opacity) + 0.1; } else { el.style.display = 'block'; clearInterval(fadeInEffect); } }, 50); } }; function validateEmail(email){ if(email.match( \/^(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$\/ )) { return true; } return false; } <\/script> \n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><a href=\"http:\/\/crochetmaven.com\/\">Home<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Home &nbsp; &nbsp;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-940","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Home\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Crochet Maven - For those who like to crochet &amp; give things away!\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Keep me posted - Crochet Maven\" \/>\n\t\t<meta property=\"og:description\" content=\"Home\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-13T00:35:34+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-13T00:54:40+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Keep me posted - Crochet Maven\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Home\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/crochetmaven.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/crochetmaven.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#listItem\",\"name\":\"Keep me posted\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#listItem\",\"position\":2,\"name\":\"Keep me posted\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/crochetmaven.com#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/#organization\",\"name\":\"Crochet Maven\",\"description\":\"For those who like to crochet & give things away!\",\"url\":\"https:\\\/\\\/crochetmaven.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/crochetmaven.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/cropped-cropped-Untitled-design.jpg\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#organizationLogo\",\"width\":535,\"height\":200,\"caption\":\"Crochet Maven logo\"},\"image\":{\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#organizationLogo\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#webpage\",\"url\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/\",\"name\":\"Keep me posted - Crochet Maven\",\"description\":\"Home\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/index.php\\\/keep-me-posted\\\/#breadcrumblist\"},\"datePublished\":\"2019-10-12T19:35:34+00:00\",\"dateModified\":\"2019-10-12T19:54:40+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/#website\",\"url\":\"https:\\\/\\\/crochetmaven.com\\\/\",\"name\":\"Crochet Maven\",\"description\":\"For those who like to crochet & give things away!\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/crochetmaven.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Keep me posted - Crochet Maven","description":"Home","canonical_url":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/crochetmaven.com#listItem","position":1,"name":"Home","item":"https:\/\/crochetmaven.com","nextItem":{"@type":"ListItem","@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#listItem","name":"Keep me posted"}},{"@type":"ListItem","@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#listItem","position":2,"name":"Keep me posted","previousItem":{"@type":"ListItem","@id":"https:\/\/crochetmaven.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/crochetmaven.com\/#organization","name":"Crochet Maven","description":"For those who like to crochet & give things away!","url":"https:\/\/crochetmaven.com\/","logo":{"@type":"ImageObject","url":"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg","@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#organizationLogo","width":535,"height":200,"caption":"Crochet Maven logo"},"image":{"@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#webpage","url":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/","name":"Keep me posted - Crochet Maven","description":"Home","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/crochetmaven.com\/#website"},"breadcrumb":{"@id":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/#breadcrumblist"},"datePublished":"2019-10-12T19:35:34+00:00","dateModified":"2019-10-12T19:54:40+00:00"},{"@type":"WebSite","@id":"https:\/\/crochetmaven.com\/#website","url":"https:\/\/crochetmaven.com\/","name":"Crochet Maven","description":"For those who like to crochet & give things away!","inLanguage":"en-US","publisher":{"@id":"https:\/\/crochetmaven.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"Crochet Maven - For those who like to crochet &amp; give things away!","og:type":"article","og:title":"Keep me posted - Crochet Maven","og:description":"Home","og:url":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/","og:image":"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg","og:image:secure_url":"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg","article:published_time":"2019-10-13T00:35:34+00:00","article:modified_time":"2019-10-13T00:54:40+00:00","twitter:card":"summary_large_image","twitter:title":"Keep me posted - Crochet Maven","twitter:description":"Home","twitter:image":"https:\/\/crochetmaven.com\/wp-content\/uploads\/2026\/08\/cropped-cropped-Untitled-design.jpg"},"aioseo_meta_data":{"post_id":"940","title":null,"description":null,"keywords":null,"keyphrases":{"focus":[],"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_custom_image_width":null,"og_custom_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"created":"2026-08-18 17:57:55","updated":"2026-08-18 22:40:05","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"primary_term":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"twitter_image_url":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/crochetmaven.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tKeep me posted\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/crochetmaven.com"},{"label":"Keep me posted","link":"https:\/\/crochetmaven.com\/index.php\/keep-me-posted\/"}],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/pages\/940","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/comments?post=940"}],"version-history":[{"count":4,"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/pages\/940\/revisions"}],"predecessor-version":[{"id":942,"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/pages\/940\/revisions\/942"}],"wp:attachment":[{"href":"https:\/\/crochetmaven.com\/index.php\/wp-json\/wp\/v2\/media?parent=940"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}