Enroll in the Seller Success Challenge below and get ready to write your own
1
Your Info
Name + Email + Phone
2
your info
Billing Info
Shipping
We Respect Your Privacy & Information
             Privacy Guaranteed       100% Secure Information
Here's What's Waiting For You On The Other Side:
THE 21 DAY SELLER SUCCESS CHALLENGE:  The ultimate Etsy SEO training for busy sellers (Valued at $500)
Getting to Know Your Ideal Customer Worksheet (Valued at $150)
Etsy Analytics Tracker Template (Valued at $100)
Keyword Research Planner Template (Valued at $150)
Optimized Etsy Shop Checklist (Valued at $150)
SEO Improvements Tracker (Valued at $150)
Shop Audit Worksheet (Valued at $150)
Etsy Listing Best Practices Checklists (Valued at $300)
Action Plan Worksheet (Valued at $100)
Daily Planner Worksheet (Valued at $100)
Weekly FB Lives In Private Group On The Topics You Choose...Priceless!
Love & Accountability From Other Super Sellers...Priceless!
Total Value: $1,850
Your Price: $99
In 21 days, you'll have the tools 
you need to grow your shop from
Stop waiting to live the life you really want and start turning your passion 
into consistent profit.
Copyright 2019 Elevate Virtual Marketing, LLC | All Rights Reserved | Terms and Conditions and Privacy Policy
danielle@elevatevirtualmarketing.com
Powered By ClickFunnels.com
/************************** * Copyright 2017 CF Pro Tools, All Rights Reserved * Do not share, or distribute this code without author's consent. * Author: Jaime Smith * Website: https://cfprotools.com **************************/ var prodMap = { '1073749': [], '1139896': [] }; var promos= [ { 'codes': ['MAMA'], 'regular': ['1073749','1139896'], 'promo': ['1139886','1075136'], 'description': 'BE A FREE MAMA' } ]; var promoCodes = []; var allPromoProds = []; $.each(promos, function (index, value) { var currCodes = value.codes; var currPromoProds = value.promo; if (currCodes) { promoCodes = promoCodes.concat(currCodes); } if (currPromoProds) { allPromoProds = allPromoProds.concat(currPromoProds); } }); //convert codes to upper promoCodes = promoCodes.map(function (x) { return x.toUpperCase(); }); var allMainProds = []; $.each(prodMap, function (index, value) { allMainProds.push(index); }); $(function () { var applyButton = $('', {'class': 'input-group-addon cf-promo-apply', text: 'Apply'}); $('[data-title*="cf-promo-input"] input').wrap('
'); $('[data-title*="cf-promo-input"] .input-group').append(applyButton); $('[data-title*="cf-promo-input"]').append($('
', {'class': 'cf-promo-status form-control-feedback elAlign_right', text: ''})); if ($('.o2step_wrapper').length) { $('.elOrderProductOptions').first().attr('data-de-type','orpo').before($('[data-title="cf-promo-headline"], [data-title*="cf-promo-input"]').show()); } /* $('.cf-promo-apply').on('click', function () { cfCheckPromoCode(); }); */ $('[data-title*="cf-promo-input"] input').on('keypress', function (e) { if (e.which == 13) { if ($(this).val()) { cfCheckPromoCode(); } return false; } }); $('[data-title*="cf-promo-input"] input').on('blur', function (e) { if ($(this).val()) { cfCheckPromoCode(); } }); }); $(function () { $('[data-de-type="orpo"]').hide(); //hide promo products by default $.each(allPromoProds, function (index, value) { $('.elOrderProductOptinProductName [value='+value+']').closest('.elOrderProductOptinProducts').hide(); }); $('[data-de-type="orpo"]').show(); }); function cfCheckPromoCode() { var applied = false; var mainProds = []; var promoProds = []; var description = ''; var promoEntered = $('[data-title="cf-promo-input"] input').val().toUpperCase(); if ($.inArray(promoEntered,promoCodes) > -1) { //find the obj that contains the code var promo = {}; $.each(promos, function (index, value) { var currCodes = value.codes; currCodes = currCodes.map(function (x) { return x.toUpperCase(); }); if (currCodes.indexOf(promoEntered) > -1) { mainProds = value.regular; promoProds = value.promo; description = value.description; return false; } }); //hide all main price product options $.each(mainProds, function (index, value) { $('.elOrderProductOptinProductName #pid-'+value).closest('.elOrderProductOptinProducts').hide(400); }); //hide all promo prods in case another code was entered previously $.each(allPromoProds, function (index, value) { $('.elOrderProductOptinProductName #pid-'+value).closest('.elOrderProductOptinProducts').hide(); }); //show all promo products $.each(promoProds, function (index, value) { $('.elOrderProductOptinProductName [value='+value+']').closest('.elOrderProductOptinProducts').show(400); //trigger click on first promo prod option if (index == 0) { $('.elOrderProductOptinProductName #pid-'+value).trigger("click"); } }); applied = true; } else { //hide all promo price product options $.each(allPromoProds, function (index, value) { $('.elOrderProductOptinProductName #pid-'+value).closest('.elOrderProductOptinProducts').hide(400); }); //show all main products $.each(allMainProds, function (index, value) { $('.elOrderProductOptinProductName #pid-'+value).closest('.elOrderProductOptinProducts').show(400); //trigger click on first promo prod option if (index == 0) { $('.elOrderProductOptinProductName #pid-'+value).trigger("click"); } }); applied = false; } if (applied) { var appliedText = 'Code Applied'; if (description) { appliedText = description; } $('[data-title*="cf-promo-input"]').removeClass('has-warning').addClass('has-success').find('.cf-promo-status').html(appliedText); $('[data-title="cf-promo-input"] input').attr('placeholder','Code Applied: '+promoEntered).val(''); } else { $('[data-title*="cf-promo-input"]').removeClass('has-success').addClass('has-warning').find('.cf-promo-status').html('No such code!'); $('[data-title="cf-promo-input"] input').attr('placeholder','No Such Code!').val(''); } return applied; }