{"id":8894,"date":"2018-08-22T22:17:59","date_gmt":"2018-08-22T22:17:59","guid":{"rendered":"https:\/\/www.jaynewaynedesign.com\/blog\/?page_id=8894"},"modified":"2018-08-23T05:12:31","modified_gmt":"2018-08-23T05:12:31","slug":"services-e-commerce-2","status":"publish","type":"page","link":"https:\/\/www.jaynewaynedesign.com\/blog\/services-e-commerce-2\/","title":{"rendered":"Services Estimate Proposal B"},"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\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><!-- \/row -->\n\n            <div class=\"row\">\n              <div class=\"col-md-6\">\n\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=\"4800\"> 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=\"625\"> 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=\"675\"> Business Card Design<\/label>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n\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=\"8750\"> 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=\"4800\"> Custom WordPress Build Appended to 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=\"9800\"> 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=\"160\" 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=\"300\"> Domain-Hosted Email Setup<\/label>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n\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=\"85\" data-initial=\"499\"> 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=\"85\" data-initial=\"499\"> Instagram Feed Integration (WordPress)<\/label>\n                      <\/div>\n                      <div class=\"checkbox\">\n                        <label><input type=\"checkbox\" class=\"svc\" name=\"s3\" id=\"s3\" data-monthly=\"50\" data-initial=\"299\"> 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=\"50\" data-initial=\"399\"> Google Business Review API Integration (WordPress)<\/label>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n\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=\"149\" data-initial=\"575\"> 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=\"1500\"> On-Site Search Engine Optimization<\/label>\n                      <\/div>\n                      <div class=\"checkbox\">\n                        <label><input type=\"checkbox\" class=\"svc\" name=\"seo3a\" id=\"seo3a\" data-monthly=\"149\" data-initial=\"1900\"> First Found Tier 1 &mdash; Local Presence<\/label>\n                      <\/div>\n                      <div class=\"checkbox\">\n                        <label><input type=\"checkbox\" class=\"svc\" name=\"seo3b\" id=\"seo3b\" data-monthly=\"249\" data-initial=\"1900\"> First Found Tier 2 &mdash; Local Growth <em>(Recommended)<\/em><\/label>\n                      <\/div>\n                      <div class=\"checkbox\">\n                        <label><input type=\"checkbox\" class=\"svc\" name=\"seo3c\" id=\"seo3c\" data-monthly=\"349\" data-initial=\"1900\"> First Found Tier 3 &mdash; Local Authority<\/label>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n\n              <\/div><!-- \/col-md-6 -->\n\n              <div class=\"col-md-6\">\n\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=\"30\" data-initial=\"1500\"> 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=\"200\" data-initial=\"25000\"> 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=\"50\" data-initial=\"7400\"> 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=\"1500\"> Ecommerce Product Entry - Up to 50 Items (No Variants)<\/label>\n                      <\/div>\n                      <div class=\"checkbox\">\n                        <label><input type=\"checkbox\" class=\"svc\" name=\"e5\" id=\"e5\" data-monthly=\"0\" data-initial=\"1500\"> Paid Membership Portal - Appended to CMS (usually WordPress)<\/label>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n\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=\"120\" data-initial=\"0\"> WordPress \/ CMS Maintenance (Backups, Updates, Security)<\/label>\n                      <\/div>\n                    <\/div>\n                  <\/div>\n                <\/div>\n\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\"><input type=\"text\" name=\"services1\" class=\"form-control\" placeholder=\"services 1\"><\/div>\n                        <div class=\"col-md-4\"><span class=\"other-amount\">$<\/span><input type=\"text\" class=\"form-control services_amt_res\" name=\"services_amt_1\" id=\"services_amt_1\" data-previous=\"0\" placeholder=\"00.00\"><\/div>\n                      <\/div>\n                    <\/div>\n\n                    <div class=\"form-group\">\n                      <div class=\"row\">\n                        <div class=\"col-md-8\"><input type=\"text\" class=\"form-control\" placeholder=\"services 2\" name=\"services2\"><\/div>\n                        <div class=\"col-md-4\"><span class=\"other-amount\">$<\/span><input type=\"text\" class=\"form-control services_amt_res\" name=\"services_amt_2\" id=\"services_amt_2\" data-previous=\"0\" placeholder=\"00.00\"><\/div>\n                      <\/div>\n                    <\/div>\n\n                    <div class=\"form-group\">\n                      <div class=\"row\">\n                        <div class=\"col-md-8\"><input type=\"text\" class=\"form-control last-service\" placeholder=\"services 3\" name=\"services3\"><\/div>\n                        <div class=\"col-md-4\"><span class=\"other-amount\">$<\/span><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\"><\/div>\n                      <\/div>\n                    <\/div>\n\n                    <div class=\"form-group\">\n                      <div class=\"row\">\n                        <div class=\"col-md-8\">\n                          <input type=\"text\" class=\"form-control last-service\" name=\"month_ser_fees_lbl\" placeholder=\"Monthly Service Fees Adj.\">\n                        <\/div>\n                        <div class=\"col-md-4\">\n                          <div class=\"input-group no-wrap\">\n                            <span class=\"input-group-addon\">+\/- $<\/span>\n                            <input type=\"text\" class=\"form-control services_amt_res last-service\" name=\"month_ser_fees\" id=\"month_ser_fees\" data-previous=\"0\" placeholder=\"00.00\">\n                          <\/div>\n                        <\/div>\n                      <\/div>\n                    <\/div>\n\n                  <\/div>\n                <\/div>\n\n              <\/div><!-- \/col-md-6 -->\n            <\/div><!-- \/row -->\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\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\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\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\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\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\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\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\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><!-- \/row -->\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>Brand Development<\/h2>\n          <ul>\n            <li><strong>Logo &amp; Brand Identity Design:<\/strong> Professional logo development, color and brand styling, tailored to your business 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><strong>Branded HTML Email Signature:<\/strong> A clean, mobile-friendly signature styled with your logo, colors, and links - compatible with major email platforms.<\/li>\n            <li><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>Website Development<\/h2>\n          <ul>\n            <li><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><strong>Mobile-Responsive HTML Static Website:<\/strong> A lightweight, hand-coded site with fast load times and modern styling - ideal for SEO, speed, security, and simplicity.<\/li>\n            <li><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><strong>Mobile-Responsive WordPress Website:<\/strong> Fully custom WordPress site with plugin integration and mobile responsiveness - ideal when paired with our maintenance plan.<\/li>\n            <li><strong>Light Website Redesign:<\/strong> A fresh visual update using your existing structure - great for polished refreshes without full rebuilds.<\/li>\n            <li><strong>Team-Support Hosting &amp; Management:<\/strong> Fully managed hosting, plugin updates, speed optimization, and support - maintenance without the headache.<\/li>\n            <li><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>E-Commerce<\/h2>\n          <ul>\n            <li><strong>Simple Ecommerce Setup:<\/strong> Integration with PayPal or Stripe for basic checkout - ideal for donations or single-product setups.<\/li>\n            <li><strong>Premium Scalable Ecommerce Platform:<\/strong> Complete ecommerce site setup with merchant accounts, shipping, tax, and growth-ready features.<\/li>\n            <li><strong>Ecommerce Add-On for CMS Site:<\/strong> Add ecommerce features to your CMS site, including store and payment configuration.<\/li>\n            <li><strong>Ecommerce Product Entry - Up to 50 Items:<\/strong> We'll format and upload up to 50 unique SKUs with SEO-optimized details and imagery.<\/li>\n            <li><strong>Paid Membership Portal:<\/strong> Appended to CMS (usually WordPress) to support memberships and gated content.<\/li>\n          <\/ul>\n\n          <h2>Security &amp; Maintenance<\/h2>\n          <ul>\n            <li><strong>Standard SSL Certificate Installation:<\/strong> Enables HTTPS and provides baseline security for visitors and Google.<\/li>\n            <li><strong>Premium \"Buy with Confidence\" SSL Certificate:<\/strong> High-trust SSL option for ecommerce and sensitive data protection.<\/li>\n            <li><strong>WordPress \/ CMS Maintenance:<\/strong> Ongoing security updates, performance checks, and malware protection.<\/li>\n          <\/ul>\n\n          <h2>Search Visibility &amp; SEO<\/h2>\n          <ul>\n            <li><strong>SEO Essentials Setup &amp; Maintenance:<\/strong> Foundational strategies to improve visibility and support growth, including freshness signals and engagement monitoring.<\/li>\n            <li><strong>On-Site SEO:<\/strong> Targeted optimization including keyword refinement, alt tags, and redirects to preserve ranking post-redesign.<\/li>\n            <li><strong>First Found &mdash; Local Listing Management (Tiered):<\/strong> Managed listings across Google, Yelp, Maps, Siri, Alexa, and more &mdash; consistent visibility, real-time sync, and monthly reporting. Setup fee of $1,900 applies to all tiers and includes Google Business Profile claiming\/optimization, business description writing, keyword research, logo and photo optimization, and Name\/Address\/Phone (NAP) audit.\n              <ul>\n                <li><strong>Tier 1 &mdash; Local Presence ($149\/month):<\/strong> Directory syndication to 40+ sources, Google Business Profile sync and monitoring, voice search distribution (Siri, Alexa, Google Assistant), monthly automated visibility reports.<\/li>\n                <li><strong>Tier 2 &mdash; Local Growth ($249\/month) &mdash; Recommended:<\/strong> Everything in Tier 1, plus Local Rank Tracker (geographic grid keyword rankings), review monitoring with alerts (Google Business Profile and Yelp), enhanced monthly reporting, and quarterly Google Business Profile optimization review.<\/li>\n                <li><strong>Tier 3 &mdash; Local Authority ($349\/month):<\/strong> Everything in Tier 2, plus monthly Google Business Profile post creation (1&ndash;2 posts), review response drafting and posting in your voice, and monthly strategy check-in.<\/li>\n              <\/ul>\n            <\/li>\n          <\/ul>\n\n          <h2>Social Media Integration<\/h2>\n          <ul>\n            <li><strong>Facebook Feed\/Review Integration:<\/strong> Display your Facebook feed or reviews within your website to keep content fresh and trustworthy.<\/li>\n            <li><strong>Instagram Feed Integration:<\/strong> Live integration of your Instagram feed or reels, styled to match your brand.<\/li>\n            <li><strong>Yelp Review API Integration:<\/strong> Showcase your best Yelp reviews to add social proof and trust.<\/li>\n            <li><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-8894","page","type-page","status-publish","hentry","no-post-thumbnail"],"_links":{"self":[{"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages\/8894","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=8894"}],"version-history":[{"count":4,"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages\/8894\/revisions"}],"predecessor-version":[{"id":8898,"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/pages\/8894\/revisions\/8898"}],"wp:attachment":[{"href":"https:\/\/www.jaynewaynedesign.com\/blog\/wp-json\/wp\/v2\/media?parent=8894"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}