{"id":8475,"date":"2017-05-30T11:55:39","date_gmt":"2017-05-30T11:55:39","guid":{"rendered":"https:\/\/www.jaynewaynedesign.com\/blog\/?page_id=8475"},"modified":"2017-09-12T22:10:43","modified_gmt":"2017-09-12T22:10:43","slug":"services-e-commerce","status":"publish","type":"page","link":"https:\/\/www.jaynewaynedesign.com\/blog\/services-e-commerce\/","title":{"rendered":"Services Estimate Proposal"},"content":{"rendered":"        <script type=\"text\/javascript\">\n        function validLast()\n        {\n            \/\/ Defensive checks: only validate fields that actually exist.\n            var nameField = document.getElementById('your_name');\n            if (nameField && nameField.value === '') {\n                alert(\"Please Enter your name\");\n                return false;\n            }\n\n            var emailField = document.getElementById('email');\n            if (emailField) {\n                var str    = emailField.value;\n                var filter = \/^([\\w-]+(?:\\.[\\w-]+)*)@((?:[\\w-]+\\.)*\\w[\\w-]{0,66})\\.([a-z]{2,6}(?:\\.[a-z]{2})?)$\/i;\n                if (!filter.test(str)) {\n                    alert(\"Please enter a valid email address!\");\n                    return false;\n                }\n            }\n\n            var msgField = document.getElementById('your_message');\n            if (msgField && msgField.value === '') {\n                alert(\"Please Enter your message\");\n                return false;\n            }\n\n            var subjField = document.getElementById('subject');\n            if (subjField && subjField.value === '') {\n                alert(\"Please enter subject\");\n                return false;\n            }\n        }\n        <\/script>\n\n        <script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.9.1\/jquery.min.js\"><\/script>\n\n        <script type=\"text\/javascript\">\n        jQuery(document).ready(function($) {\n\n            function updateTotals() {\n                var total   = 0;\n                var monthly = 0;\n\n                \/\/ Sum checked services\n                $('.svc:checked').each(function() {\n                    total   += parseFloat($(this).attr('data-initial'))  || 0;\n                    monthly += parseFloat($(this).attr('data-monthly')) || 0;\n                });\n\n                \/\/ Optional extra employees (b4) \u2013 safe if missing\n                var addl = parseInt($('#b4').val(), 10) || 0;\n                if (addl > 0) {\n                    total += addl * 200;\n                }\n\n                \/\/ --- FIX: Include \"Other\" service amounts in the total ---\n                $('.services_amt_res').not('#month_ser_fees').each(function() {\n                    var amt = parseFloat($(this).val()) || 0;\n                    total += amt;\n                });\n                \/\/ --- END FIX ---\n\n                \/\/ Monthly adjustment (can be + or -)\n                var adj = parseFloat($('#month_ser_fees').val()) || 0;\n                monthly += adj;\n                if (monthly < 0) {\n                    monthly = 0;\n                }\n\n                $('#total').html(total.toFixed(2));\n                $('#last_due').html((total \/ 2).toFixed(2));\n                $('#final_payment_interim').html((total \/ 4).toFixed(2));\n                $('#final_payment').html((total \/ 4).toFixed(2));\n                $('#monthly_fees').html(monthly.toFixed(2));\n            }\n\n            \/\/ Bind changes\n            $('.svc').on('change', updateTotals);\n\n            \/\/ --- FIX: Also bind the \"Other\" amount fields so totals update as you type ---\n            $('#b4, #month_ser_fees, .services_amt_res').on('keyup change blur', updateTotals);\n            \/\/ --- END FIX ---\n\n            \/\/ Only allow numbers, minus, dot, backspace in numeric fields\n            $('#b4, #month_ser_fees, .services_amt_res').on('keypress', function(e) {\n                if (\n                    e.which === 8  ||   \/\/ backspace\n                    e.which === 0  ||   \/\/ some control keys\n                    e.which === 45 ||   \/\/ -\n                    e.which === 46 ||   \/\/ .\n                    (e.which >= 48 && e.which <= 57) \/\/ 0\u20139\n                ) {\n                    return true;\n                }\n                return false;\n            });\n\n            \/\/ Sync checkboxes \u2192 text descriptions (#desc_b1, #desc_w2, etc.)\n            function updateDescriptionChecks() {\n                $('.svc').each(function() {\n                    var svcId    = $(this).attr('id');      \/\/ e.g. \"b1\"\n                    var descItem = $('#desc_' + svcId);     \/\/ e.g. \"#desc_b1\"\n                    if (descItem.length) {\n                        if ($(this).is(':checked')) {\n                            descItem.addClass('checked');\n                        } else {\n                            descItem.removeClass('checked');\n                        }\n                    }\n                });\n            }\n\n            updateTotals();\n            updateDescriptionChecks();\n            $('.svc').on('change', updateDescriptionChecks);\n        });\n        <\/script>\n        \n        <div class=\"services-cost-calculator\">\n        <form id=\"services_form\" method=\"post\" autocomplete=\"off\">\n        <div class=\"row\">\n\n            <div class=\"col-xs-12\">\n              <div class=\"panel panel-danger1\">\n                <div class=\"panel-heading\">\n                  <h3 class=\"panel-title\">BASIC INFO<\/h3>\n                <\/div>\n                <div class=\"panel-body\">\n                    <div class=\"row\">\n                        <div class=\"col-md-6\">\n                                <div class=\"form-group\">\n                                    <label>Your name<span class=\"required\">*<\/span><\/label>\n                                    <input type=\"text\" class=\"form-control\" name=\"name\" id=\"name\">\n                                <\/div>\n                                <div class=\"form-group\">\n                                    <label>Business Name<\/label>\n                                    <input type=\"text\" class=\"form-control\" name=\"businessname\" id=\"businessname\">\n                                <\/div>\n                                <div class=\"form-group\">\n                                    <label>Your Email Address<span class=\"required\">*<\/span><\/label>\n                                    <input type=\"email\" class=\"form-control\" name=\"email\" id=\"email\">\n                                <\/div>\n                        <\/div>\n                        <div class=\"col-md-6\">\n                            <div class=\"form-group\">\n                                    <label>Phone Number<\/label>\n                                    <input type=\"text\" class=\"form-control\" name=\"phone_number\" id=\"phone_number\">\n                                <\/div>\n                                <div class=\"form-group\">\n                                    <label>Comments<\/label>\n                                    <textarea name=\"comment\" cols=\"40\" class=\"form-control\"><\/textarea>\n                                <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n              <\/div>\n            <\/div>\n\n        <\/div>\n\n        <div class=\"row\">\n        <div class=\"col-md-6\">\n\n          <!-- BRAND DEVELOPMENT \u2014 PREMIUM -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">BRAND DEVELOPMENT<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"b1\" id=\"b1\" data-monthly=\"0\" data-initial=\"6400\">Logo &amp; Brand Identity Design<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"b2\" id=\"b2\" data-monthly=\"0\" data-initial=\"825\">Branded HTML Email Signature<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"b3\" id=\"b3\" data-monthly=\"0\" data-initial=\"875\">Business Card Design<\/label>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n\n          <!-- WEBSITE DEVELOPMENT \u2014 PREMIUM -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">WEBSITE DEVELOPMENT<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w1\" id=\"w1\" data-monthly=\"10\" data-initial=\"100\">Domain Registration &amp; Management<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w2\" id=\"w2\" data-monthly=\"0\" data-initial=\"12000\">Mobile-Responsive HTML Static Website Design &amp; Development<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w3\" id=\"w3\" data-monthly=\"0\" data-initial=\"6500\">Custom WordPress Build Appended to Static HTML Site<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w4\" id=\"w4\" data-monthly=\"0\" data-initial=\"13500\">Mobile-Responsive WordPress Website Design &amp; Development<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w5\" id=\"w5\" data-monthly=\"0\" data-initial=\"6250\">Light Website Redesign (WordPress or HTML)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w6\" id=\"w6\" data-monthly=\"240\" data-initial=\"0\">Team-Support Hosting &amp; Ongoing Management<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"w7\" id=\"w7\" data-monthly=\"10\" data-initial=\"400\">Domain-Hosted Email Setup<\/label>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n\n          <!-- SOCIAL MEDIA INTEGRATION \u2014 PREMIUM -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">SOCIAL MEDIA INTEGRATION<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"s1\" id=\"s1\" data-monthly=\"110\" data-initial=\"650\">Facebook Feed\/Review API Integration (WordPress)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"s2\" id=\"s2\" data-monthly=\"110\" data-initial=\"650\">Instagram Feed Integration (WordPress)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"s3\" id=\"s3\" data-monthly=\"70\" data-initial=\"399\">Yelp Review API Integration (WordPress)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"s4\" id=\"s4\" data-monthly=\"70\" data-initial=\"525\">Google Business Review API Integration (WordPress)<\/label>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n\n          <!-- SEARCH VISIBILITY & SEO \u2014 PREMIUM -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">SEARCH VISIBILITY &amp; SEO<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"seo1\" id=\"seo1\" data-monthly=\"199\" data-initial=\"800\">SEO Essentials Setup &amp; Maintenance<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"seo2\" id=\"seo2\" data-monthly=\"0\" data-initial=\"2200\">On-Site Search Engine Optimization<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"seo3\" id=\"seo3\" data-monthly=\"225\" data-initial=\"2500\">First Found - Visibility and Local Listing Management<\/label>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n\n        <\/div>\n\n        <div class=\"col-md-6\">\n\n          <!-- ECOMMERCE \u2014 PREMIUM -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">ECOMMERCE<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"e1\" id=\"e1\" data-monthly=\"45\" data-initial=\"2000\">Simple Ecommerce Setup (PayPal \/ Stripe)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"e2\" id=\"e2\" data-monthly=\"300\" data-initial=\"32000\">Premium Scalable Ecommerce Platform + Merchant Config<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"e3\" id=\"e3\" data-monthly=\"75\" data-initial=\"9800\">Ecommerce Add-On for CMS Site (incl. Merchant Config)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"e4\" id=\"e4\" data-monthly=\"0\" data-initial=\"2000\">Ecommerce Product Entry \u2013 Up to 50 Items (No Variants)<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"e4_dup\" id=\"e4_dup\" data-monthly=\"0\" data-initial=\"2200\">Paid Membership Portal - Appended to CMS (usually WordPress)<\/label>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n\n          <!-- SECURITY & MAINTENANCE \u2014 PREMIUM -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">SECURITY &amp; MAINTENANCE<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"se1\" id=\"se1\" data-monthly=\"12\" data-initial=\"150\">Standard SSL Certificate Installation<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"se2\" id=\"se2\" data-monthly=\"49\" data-initial=\"400\">Premium \"Buy with Confidence\" SSL Certificate<\/label>\n                <\/div>\n                <div class=\"checkbox\">\n                  <label><input type=\"checkbox\" class=\"svc\" name=\"se3\" id=\"se3\" data-monthly=\"185\" data-initial=\"0\">WordPress \/ CMS Maintenance (Backups, Updates, Security)<\/label>\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n\n          <!-- OTHER -->\n          <div class=\"panel panel-danger1\">\n            <div class=\"panel-heading\">\n              <h3 class=\"panel-title\">Other<\/h3>\n            <\/div>\n            <div class=\"panel-body\">\n              <div class=\"form-group\">\n                <div class=\"row\">\n                    <div class=\"col-md-8\">\n                        <input type=\"text\" name=\"services1\" class=\"form-control\" placeholder=\"services 1\">\n                    <\/div>\n                    <div class=\"col-md-4\">\n                        <span class=\"other-amount\">$<\/span>\n                        <input type=\"text\" class=\"form-control services_amt_res\" name=\"services_amt_1\" id=\"services_amt_1\" data-previous=\"0\" placeholder=\"00.00\">\n                    <\/div>\n                <\/div>\n              <\/div>\n              <div class=\"form-group\">\n                <div class=\"row\">\n                    <div class=\"col-md-8\">\n                        <input type=\"text\" class=\"form-control\" placeholder=\"services 2\" name=\"services2\">\n                    <\/div>\n                    <div class=\"col-md-4\">\n                        <span class=\"other-amount\">$<\/span>\n                        <input type=\"text\" class=\"form-control services_amt_res\" name=\"services_amt_2\" id=\"services_amt_2\" data-previous=\"0\" placeholder=\"00.00\">\n                    <\/div>\n                <\/div>\n              <\/div>\n              <div class=\"form-group\">\n                <div class=\"row\">\n                    <div class=\"col-md-8\">\n                        <input type=\"text\" class=\"form-control last-service\" placeholder=\"services 3\" name=\"services3\">\n                    <\/div>\n                    <div class=\"col-md-4\">\n                        <span class=\"other-amount\">$<\/span>\n                        <input type=\"text\" class=\"form-control services_amt_res last-service\" name=\"services_amt_3\" id=\"services_amt_3\" data-previous=\"0\" placeholder=\"00.00\">\n                    <\/div>\n                <\/div>\n              <\/div>\n\n              <div class=\"form-group\">\n                <div class=\"row\">\n                  <div class=\"col-md-8\">\n                    <input\n                      type=\"text\"\n                      class=\"form-control last-service\"\n                      name=\"month_ser_fees_lbl\"\n                      placeholder=\"Monthly Service Fees Adj.\"\n                    >\n                  <\/div>\n                  <div class=\"col-md-4\">\n                    <div class=\"input-group no-wrap\">\n                      <span class=\"input-group-addon\">\u00b1$<\/span>\n                      <input\n                        type=\"text\"\n                        class=\"form-control services_amt_res last-service\"\n                        name=\"month_ser_fees\"\n                        id=\"month_ser_fees\"\n                        data-previous=\"0\"\n                        placeholder=\"00.00\"\n                      >\n                    <\/div>\n                  <\/div>\n                <\/div>\n              <\/div>\n\n            <\/div>\n          <\/div>\n\n        <\/div>\n        <\/div>\n\n        <div class=\"row\">\n        <div class=\"col-md-6\">\n            <div class=\"panel-body\">\n                <div class=\"total-row\">\n                    <div class=\"total-label\">Total<\/div>\n                    <div class=\"total\">$<span id=\"total\">0<\/span><\/div>\n                <\/div>\n                <div class=\"total-row\" style=\"background-color:#fff\">\n                    <div class=\"total-label\" style=\"height:2px; padding:0;\"><\/div>\n                    <div class=\"total\" style=\"height:2px; padding:0;\"><\/div>\n                <\/div>\n                <div class=\"total-row\">\n                    <div class=\"total-label\">First Payment - 50% of total<\/div>\n                    <div class=\"total\">$<span id=\"last_due\">0<\/span><\/div>\n                <\/div>\n                <div class=\"total-row\" style=\"background-color:#fff\">\n                    <div class=\"total-label\" style=\"height:2px; padding:0;\"><\/div>\n                    <div class=\"total\" style=\"height:2px; padding:0;\"><\/div>\n                <\/div>\n                <div class=\"total-row\">\n                    <div class=\"total-label\">Second Payment 30 days - 25% of total<\/div>\n                    <div class=\"total\">$<span id=\"final_payment_interim\">0<\/span><\/div>\n                <\/div>\n                <div class=\"total-row\" style=\"background-color:#fff\">\n                    <div class=\"total-label\" style=\"height:2px; padding:0;\"><\/div>\n                    <div class=\"total\" style=\"height:2px; padding:0;\"><\/div>\n                <\/div>\n                <div class=\"total-row\">\n                    <div class=\"total-label\">Final - 60 Days or Before Live (whichever is first) - 25% of total<\/div>\n                    <div class=\"total\">$<span id=\"final_payment\">0<\/span><\/div>\n                <\/div>\n                <div class=\"total-row\" style=\"background-color:#fff\">\n                    <div class=\"total-label\" style=\"height:2px; padding:0;\"><\/div>\n                    <div class=\"total\" style=\"height:2px; padding:0;\"><\/div>\n                <\/div>\n                <div class=\"total-row\">\n                    <div class=\"total-label\">Monthly Service Fees<\/div>\n                    <div class=\"total\">$<span id=\"monthly_fees\">0<\/span><\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n        <\/div>\n\n        <div class=\"row\">\n        <div class=\"col-xs-12\">\n            <!----------- Google Captcha -------->\n            <div class=\"g-recaptcha\"><\/div>\n        <\/div>\n\n        <div class=\"col-xs-12\">\n            <input type=\"hidden\" name=\"payment_method\" value=\"cash\" id=\"payment_method\">\n            <input type=\"submit\" class=\"btn btn-danger\" value=\"Proceed to Payment\">\n        <\/div>\n        <\/div>\n\n        <\/form>\n        <\/div>\n\n        <div id=\"service-descriptions\" class=\"jayne-services-description\">\n\n          <h2>\ud83e\uddfe Brand Development<\/h2>\n          <ul>\n            <li id=\"desc_b1\"><strong>Logo &amp; Brand Identity Design:<\/strong> Professional logo development, color and brand styling, tailored to your business's tone, target audience, and market positioning. You'll see your logo and brand come to life in real-life scenarios like signage, business cards, automobile branding, etc.<\/li>\n            <li id=\"desc_b2\"><strong>Branded HTML Email Signature:<\/strong> A clean, mobile-friendly signature styled with your logo, colors, and links \u2014 compatible with major email platforms.<\/li>\n            <li id=\"desc_b3\"><strong>Business Card Design:<\/strong> Custom-designed business card layout using your brand elements, optimized for print and easy reordering. We can handle the printing too.<\/li>\n          <\/ul>\n\n          <h2>\ud83d\udcbb Website Development<\/h2>\n          <ul>\n            <li id=\"desc_w1\"><strong>Domain Registration &amp; Management:<\/strong> We'll register and manage your domain name including renewals and DNS setups to ensure your domain is protected and secure.<\/li>\n            <li id=\"desc_w2\"><strong>Mobile-Responsive HTML Static Website:<\/strong> A lightweight, hand-coded site with fast load times and modern styling \u2014 ideal for SEO, speed, security, and simplicity.<\/li>\n            <li id=\"desc_w3\"><strong>Custom WordPress Build Appended to HTML Site:<\/strong> Combines fast-loading HTML with a WordPress backend for blogging or flexible content updates.<\/li>\n            <li id=\"desc_w4\"><strong>Mobile-Responsive WordPress Website:<\/strong> Fully custom WordPress site with plugin integration and mobile responsiveness \u2014 ideal when paired with our maintenance plan.<\/li>\n            <li id=\"desc_w5\"><strong>Light Website Redesign:<\/strong> A fresh visual update using your existing structure \u2014 great for polished refreshes without full rebuilds.<\/li>\n            <li id=\"desc_w6\"><strong>Team-Support Hosting &amp; Management:<\/strong> Fully managed hosting, plugin updates, speed optimization, and support \u2014 maintenance without the headache.<\/li>\n            <li id=\"desc_w7\"><strong>Domain-Hosted Email Setup:<\/strong> Setup of professional email addresses using your domain name (e.g., hello@yourcompany.com).<\/li>\n          <\/ul>\n\n          <h2>\ud83c\udf10 E-Commerce<\/h2>\n          <ul>\n            <li id=\"desc_e1\"><strong>Simple Ecommerce Setup:<\/strong> Integration with PayPal or Stripe for basic checkout \u2014 ideal for donations or single-product setups.<\/li>\n            <li id=\"desc_e2\"><strong>Premium Scalable Ecommerce Platform:<\/strong> Complete ecommerce site setup with merchant accounts, shipping, tax, and growth-ready features.<\/li>\n            <li id=\"desc_e3\"><strong>Ecommerce Add-On for CMS Site:<\/strong> Add ecommerce features to your CMS site, including store and payment configuration.<\/li>\n            <li id=\"desc_e4\"><strong>Ecommerce Product Entry \u2013 Up to 50 Items:<\/strong> We'll format and upload up to 50 unique SKUs with SEO-optimized details and imagery.<\/li>\n          <\/ul>\n\n          <h2>\ud83d\udd12 Security &amp; Maintenance<\/h2>\n          <ul>\n            <li id=\"desc_se1\"><strong>Standard SSL Certificate Installation:<\/strong> Enables HTTPS and provides baseline security for visitors and Google.<\/li>\n            <li id=\"desc_se2\"><strong>Premium \"Buy with Confidence\" SSL Certificate:<\/strong> High-trust SSL option for ecommerce and sensitive data protection.<\/li>\n            <li id=\"desc_se3\"><strong>WordPress \/ CMS Maintenance:<\/strong> Ongoing security updates, performance checks, and malware protection.<\/li>\n          <\/ul>\n\n          <h2>\ud83d\udccd Search Visibility &amp; SEO<\/h2>\n          <ul>\n            <li id=\"desc_seo1\"><strong>SEO Essentials Setup &amp; Maintenance:<\/strong> Foundational strategies to improve visibility and support growth, including freshness signals and engagement monitoring.<\/li>\n            <li id=\"desc_seo2\"><strong>On-Site SEO:<\/strong> Targeted optimization including keyword refinement, alt tags, and redirects to preserve ranking post-redesign.<\/li>\n            <li id=\"desc_seo3\"><strong>First Found Local Listing Management<\/strong> Managed listings across Google, Yelp, Maps, Siri, Alexa, and more \u2014 consistent visibility, real-time sync, and monthly reporting.<\/li>\n          <\/ul>\n\n          <h2>\ud83d\udd17 Social Media Integration<\/h2>\n          <ul>\n            <li id=\"desc_s1\"><strong>Facebook Feed\/Review Integration:<\/strong> Display your Facebook feed or reviews within your website to keep content fresh and trustworthy.<\/li>\n            <li id=\"desc_s2\"><strong>Instagram Feed Integration:<\/strong> Live integration of your Instagram feed or reels, styled to match your brand.<\/li>\n            <li id=\"desc_s3\"><strong>Yelp Review API Integration:<\/strong> Showcase your best Yelp reviews to add social proof and trust.<\/li>\n            <li id=\"desc_s4\"><strong>Google Business Review Integration:<\/strong> Highlight live Google reviews directly on your site for added credibility.<\/li>\n          <\/ul>\n\n        <\/div>\n\n        \n","protected":false},"excerpt":{"rendered":"","protected":false},"author":14,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-layout-full-width.php","meta":{"footnotes":""},"class_list":["post-8475","page","type-page","status-publish","hentry","no-post-thumbnail"],"_links":{"self":[{"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages\/8475","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/comments?post=8475"}],"version-history":[{"count":2,"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages\/8475\/revisions"}],"predecessor-version":[{"id":8569,"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages\/8475\/revisions\/8569"}],"wp:attachment":[{"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/media?parent=8475"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}