SAVING YOU MONEY

  • BLOG
    • Media/Press
      • DISCLOSURE
        • FTC Statement
        • Privacy Policy
  • START HERE
    • COUPON DATABASE
    • Coupon Policies
    • Coupons
    • SmartSource
    • P&G Coupons
    • ARCHIVES
  • COACHING
  • MAKE MONEY
  • Birthday Freebies
  • SHOP

November 24, 2012 by Quida

Signup now for Online Coupon Classes at SSFAM!

     The time is here to signup for online Coupon Classes at SSFAM!  Once you leave your name, email and be present in the online postings, you are automatically entered for a different surprise giveaway {announced during classes}.  All classes are absolutely FREE.  Plus, it does not matter where you live or what you wear to class.  All classes are completely online and you can learn in the comforts of your own home.

     There are optional class folders available for only $10 (Limit 1 per person/household). Each folder has great materials to go along with the class lessons + extras.  In one of the folders is a special surprise Visa Cash Gift Card.  There are no shipping costs!  See the below dates for the Online Coupon Classes and share with your friends.  You will not want to miss out on all the coupon fun, learning, plus freebies and giveaways!

Online Classes will be held 4 times a year (December, March, May and September):

December 10, 2012

March, 2013 (Exact date TBA)

May, 2013 (Exact date TBA)

September, 2013 (Exact date TBA)

Sign up now! Complete the form below the class schedule.  You may see several of my support team members announcing the online course, if you are being referred by someone, be sure to let me know {I do want to thank them}.

Online Coupon Classes start December 10! There may be special coupon blogger guests.  It does not matter if you are brand new to couponing or an expert, come share your questions in the comments and have fun learning to save even more.  You are able to learn in your PJ’s {smiles}.  This is an online class that may be different from others you may have seen.

Online Class Schedule and Topics – Make a note of the dates now on your calendar. 

First Week December 10- December 17

Day 1 *Welcome + Basic myths/statistics about couponing.
Day 2 *How I {the blog owner} started couponing? What difference has coupons done for me and my family?
Day 3 *What is a coupon? What is a Manufacture Coupon? What is a Store Coupon?
Day 4 *Where can I find coupons?
Day 5 * Where do I use coupons?
Day 6 * What is all that fine print on the coupon?  Is it important?
Day 7 * What if my coupon expires? Can I still use it? Where can I donate?
{Giveaway Day}
Day 8 * Coupon Organization – How to organize your coupons?

 Second Week December 18 – December 22

Day 9 * 6 Simple Savings shopping tips to use at CVS!
Day 10 *6 Simple Savings shopping tips to use at RiteAid!
Day 11 * How many coupons do I have to use in order to see a savings?
Day 12 *What are coupon abbreviations and what the heck do they mean?
{Giveaway Day} 
Day 13 * 10 Fantastic ways to shop/save at Kroger!

Holiday Break- December 23 – January 1 (Christmas Holiday and New Year’s Break)- No online classes

Third Week January 2 – January 10

Day 14 * 6 Ways to shop/save at Publix!

Day 15 * What is a coupon binder? Where can I get one? How many Newspapers should I purchase?
Day 16 * 5 Great ways to shop at Walmart! What is an All You Magazine?
Day 17 * How can I use SSFAM blog? What are Freebies?
Day 18 * What is a coupon Newbie?
Day 19 * Do men really coupon?
Day 20 * Can I teach my children how to coupon? What are some resources I can use?
Day 21 * What is a Catalina Coupon?
{Giveaway Day}
Day 22 * Just what is stacking a coupon? How can I use the store circular sales ad and use my coupons?

Final Week January 11  – January 18, 2013

Day 23 * Tell me what is a Raincheck or Rebate?
Day 24 * OMG! Buy one, get one (BOGO)! How do I use this coupon? Where can I use this coupon?
Day 25 * How can I use coupons being on a special diet? Are coupons just for junk food?
Day 26 * Can I $ave without using coupons?
Day 27 * What is Menu Planning? Why should I plan meals for myself or my family?
{Giveaway Day}
Day 28 * Can I contact companies/brands about products I like?
Day 29 * What is a coupon train? How can I become apart of one? Can I join the Atlanta Couponers Group?
Day 30 * Where can I find ongoing support when I start couponing? When will the next classes be available?  Are there any other classes that you offer? Consultation?

Special Online Bonuses:
3 Brands on Twitter!
Brands on Facebook and Twitter!
2 Brands on Twitter!
3 Brands on Twitter!

Example Coupon Previews!
Smart Source Coupon Preview 11-11!
RedPlum Coupon Preview 11-11!

2012 Newspaper Inserts!
{Learn which coupon inserts will appear in your Sunday’s Newspaper}

Grocery Store Monthly Sales Cycle
{Look for these great sales during these months}
NonFood Sales Cycle 

Join Atlanta Couponers Group {Facebook} for ongoing support and to stay connected with other learners {It doesn’t matter if you live in another state}.

Sign up FREE below now!

Email

Name

State

New Couponer

Refreshing My Coupon Knowledge

Purchasing Class Folder Yes Or No

Referred By

(function() {
var form = document.getElementById(“mad_mimi_signup_form”),
submit = document.getElementById(“webform_submit_button”),
email = /.+@.+..+/;

form.onsubmit = function(event) {
var isValid = validate();
if(!isValid) {
for(var i = 0; i < form.elements.length; ++i) { var input = form.elements[i] if(input.className.indexOf("required") >= 0) {
input.onchange = validate;
}
}
return false;
}
if(form.getAttribute(“data-webform-type”) != ‘iframe’) {
form.className = “mimi_submitting”;
submit.value = submit.getAttribute(“data-submitting-text”);
submit.disabled = true;
submit.className = “disabled”;
}

setTimeout(function() {
for(var i = 0; i < form.getElementsByTagName("input").length; ++i) { var input = form.getElementsByTagName("input")[i] if(input.getAttribute("type") == "text") { input.value = ""; } if(input.id == 'signup_email') { input.placeholder = "you@example.com"; } else { input.placeholder = ""; } } }, 3000); } function validate() { var isValid = true; for(var i = 0; i < form.elements.length; ++i) { var input = form.elements[i], allDivs = input.parentNode.getElementsByTagName("div"); if(input.className.indexOf("required") >= 0) {
if(input.id == ‘signup_email’) {
if(!email.test(input.value)) {
emailErrorMessage(input, allDivs);
isValid = false;
} else {
removeErrorMessage(input, allDivs);
}
} else {
if((input.type == “checkbox” && !input.checked) || input.value == “” || input.value == “-1”) {
fieldErrorMessage(input, allDivs);
isValid = false;
} else {
removeErrorMessage(input, allDivs);
}
}
}
}

form.className = isValid ? “” : “mimi_invalid”;
submit.value = isValid ? submit.getAttribute(“data-default-text”) : submit.getAttribute(“data-invalid-text”);
submit.disabled = !isValid;
submit.className = isValid ? “submit” : “disabled”;

return isValid;
}

function emailErrorMessage(input, allDivs) {
if(input.getAttribute(“data-webform-type”) == “iframe”) {
input.className = “required invalid”;
input.placeholder = input.getAttribute(“data-required-message”) || “This field is required”;
} else {
allDivs[0].innerHTML = input.getAttribute(“data-invalid-message”) || “This field is invalid”;
}
}

function fieldErrorMessage(input, allDivs) {
if(input.getAttribute(“data-webform-type”) == “iframe”) {
input.className = “required invalid”;
input.placeholder = input.getAttribute(“data-required-message”) || “This field is required”;
} else {
for(var i = 0; i < allDivs.length; ++i) { var element = allDivs[i] if(element.className.indexOf("mimi_field_feedback") >= 0) {
return element.innerHTML = input.getAttribute(“data-required-message”) || “This field is required”;
}
}
}
}

function removeErrorMessage(input, allDivs) {
if(input.getAttribute(“data-webform-type”) == “iframe”) {
input.className = “required”;
}

for(var i = 0; i < allDivs.length; ++i) { var element = allDivs[i] if(element.className.indexOf("mimi_field_feedback") >= 0) {
return element.innerHTML = “”;
}
}
}
})();

Pay here now for Online Class – Folder! 
Can purchase a folder throughout the entire class.
Only $10.00
Content includes:

*Class Guide

* Pen

*3 Coupon Policies of 3 Major Stores

*Shopping List created by SSFAM!

1 Coupon Insert from either SmartSource, P&G, General Mills or RedPlum with over $10 in coupons, basically your folder is FREE!!!

Giveaways during the online coupon class may include but not limited to:  {Visa Cash Gift Card, unique envelope with coupons, Subway Gift Card, Amazon Gift Card, All You Magazine, Walmart Gift Card, Target Gift Card, CVS Gift Card, Walgreen’s Gift Card, Rite Aid Gift Card, Kroger Gift Card, AMC gift pack, Unique Tote Bag,  Coupon Binder, Coupon Hand Clutch, Samples {Nonperishable}, + more items may be added during the classes {My mail crew is going to really love me}!

Expect 1 week for processing/shipping. Make sure your paypal address is correct for shipment. If you do not use paypal, be sure to email me at (simplesavingsforatlmoms@yahoo.com) – Subject line “Class Folder” and we can discuss where to mail your money order payment.

Happy Couponing,

Quida {smiles}

Shop

❮❮ Previous Post
Next Post ❯ ❯

Comments

  1. STACY FONSECA says

    January 16, 2013 at 12:59 am

    Do you have to sign up for a class to get the folder??? and just out of curiousity bout how many pages are in the folder?

  2. Cima Perez says

    December 14, 2012 at 1:01 pm

    Great blog! πŸ˜‰

    • ATLanta Saving Moms says

      December 17, 2012 at 4:23 pm

      Thank you Cima. πŸ™‚

  3. christi parks says

    December 2, 2012 at 9:08 am

    Hello, sir i would like to ask that what is the scope of java training, what all topics should be covered and it is kinda bothering me … and has anyone studies from this course http://www.wiziq.com/course/1779-core-and-advance-java-concepts of core and advance java online ?? or tell me any other guidance…
    would really appreciate help… and Also i would like to thank for all the information you are providing on java concepts.

    • ATLanta Saving Moms says

      December 2, 2012 at 2:20 pm

      Christi, the classes are taught online my blog here at SSFAM. They are not in taught in Java. Thanks.

  4. Grace says

    November 24, 2012 at 4:00 pm

    This is perfect timing as I've been wanting to find coupon class but there are none local. I've got a new huge fridge/freezer that I want to keep full. I just signed up for the free classes at first but hopefully will have the option to pay for a folder if I feel this is something I can keep up with in my shopping routine.

    • ATLanta Saving Moms says

      November 24, 2012 at 8:50 pm

      Thanks Grace for signing up. You should be able to keep up well after the class. πŸ™‚

  5. Liz @ A Nut in a Nutshell says

    November 24, 2012 at 3:06 pm

    That's a really thorough course. Well designed!

    • ATLanta Saving Moms says

      November 24, 2012 at 8:50 pm

      Thanks Liz for your comments. πŸ™‚

  6. Crunchy Frugalista says

    November 24, 2012 at 2:33 pm

    Sounds like a great way to learn something from afar. I haven't ever done a class like this before.

    • ATLanta Saving Moms says

      November 24, 2012 at 8:49 pm

      It will be a lot of fun and plus you can learn at your own pace. πŸ™‚

  7. East9thStreet says

    November 24, 2012 at 2:11 pm

    I'll have to share this with some of my friends who want to improve their couponing skills!

    • ATLanta Saving Moms says

      November 24, 2012 at 8:49 pm

      Thanks for the comments. πŸ™‚ I am quite sure they will love it.

  8. Simply Stacie says

    November 24, 2012 at 1:22 pm

    This would be helpful for me, but I live in Canada and I don't think we have the same ability here to use coupons like the people in the USA do. I watched Extreme Couponing for the first time a few days ago and I know there's no way that would fly in Canada.

    • ATLanta Saving Moms says

      November 24, 2012 at 1:34 pm

      Thanks Stacie for the comments. πŸ™‚

AS SEEN ON

SEARCHING FOR SOMETHING

Ebates Coupons and Cash Back

CATCH ME LIVE ON IG TV

watch me live on IG

SHOP

PIN ME

Visit SimpleSavingsForATL Moms profile on Pinterest.

POPULAR POSTS

GET YOUR MONEY SAVINGS CHALLENGE BOOK TODAY!

March 1, 2022

52 WEEK MONEY SAVING CHALLENGE SSFAM EBOOK NOW AVAILABLE!

January 27, 2020

Blog Topic Ideas

January 27, 2026

DEAR SANTA, 15 CHRISTMAS GIFTS SHE WILL LOVE

December 31, 2025

AT&T SETTLEMENT – ARE YOU ELIGIBLE?

November 14, 2025

SEARCH BY DATE

March 2026
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031  
« Jan    

Pretty Chic Theme By: Pretty Darn Cute Design