Slickdeals is community-supported.  We may get paid by brands for deals, including promoted items.
forum thread Posted by Dumpsterdiver • Apr 2, 2009
forum thread Posted by Dumpsterdiver • Apr 2, 2009

Harbor Freight Coupon Thread

12,522 Comments 6,000,410 Views
See Deal
Good Deal
Save
Share
Deal Details
This thread is dedicated to them and their tools. Please update the WIKI.

January 18, 2011, 3:13 am: System Notice: This thread has been automatically renewed after reaching a post limit. Most of its content has been moved to this thread for reference purposes.

Coupon BARCODE issue:
replace
cust=%%=V(@IDENTIFIER)=%%&keycode=%%=V(@KEYCODE)=%%
with
cust=99999999999&keycode=1002
In the address bar

Most of the coupons are at the bottom of the WIKI (next post). However, you may not be able to see them on your mobile device without using the full slickdeals website.

http://www.hfqpdb.com/harborfreightcoupons
Community Notes
About the Poster
Deal Details
Community Notes
About the Poster
This thread is dedicated to them and their tools. Please update the WIKI.

January 18, 2011, 3:13 am: System Notice: This thread has been automatically renewed after reaching a post limit. Most of its content has been moved to this thread for reference purposes.

Coupon BARCODE issue:
replace
cust=%%=V(@IDENTIFIER)=%%&keycode=%%=V(@KEYCODE)=%%
with
cust=99999999999&keycode=1002
In the address bar

Most of the coupons are at the bottom of the WIKI (next post). However, you may not be able to see them on your mobile device without using the full slickdeals website.

http://www.hfqpdb.com/harborfreightcoupons

Community Voting

Deal Score
+306
Good Deal
See Deal

Leave a Comment

Unregistered (You)

12,522 Comments

Sign up for a Slickdeals account to remove this ad.

Feb 15, 2017
1,035 Posts
Joined Jan 2007
Feb 15, 2017
Oneill5491
Feb 15, 2017
1,035 Posts
Quote from pugslyyy :
Sorry n00b here - long time lurker first time poster.

Was wondering what happened with the links to the sale pages? That was the most useful thing by far. Some sort of threat by Harbor Freight?
Quote from Dumpsterdiver :
Overzealous editing. We'll get something put back up.
Yeah, sorry about that one. I couldn't quite figure out the link format to those weekly retail sales fliers and I didn't know if the wiki would be updated regularly by someone with the new links (since I often see you posting them to the forum) so I didn't know to include a section for it or not.

Thanks for adding it. I made a separate header for it as well.
Feb 15, 2017
29,827 Posts
Joined Oct 2010
Feb 15, 2017
Medic311
Feb 15, 2017
29,827 Posts
The free shipping promo today is pretty cool
Feb 16, 2017
481 Posts
Joined Jul 2006
Feb 16, 2017
naklefty
Feb 16, 2017
481 Posts
Quote from Medic311 :
The free shipping promo today is pretty cool
Didn't see anything about it?
Feb 16, 2017
29,827 Posts
Joined Oct 2010
Feb 16, 2017
Medic311
Feb 16, 2017
29,827 Posts
Quote from naklefty :
Didn't see anything about it?
It was an email that was sent out. It was yesterday only
Feb 16, 2017
481 Posts
Joined Jul 2006
Feb 16, 2017
naklefty
Feb 16, 2017
481 Posts
Quote from Medic311 :
It was an email that was sent out. It was yesterday only
Didn't get that email, oh well..
Feb 16, 2017
2,075 Posts
Joined Sep 2009
Feb 16, 2017
dogstar1
Feb 16, 2017
2,075 Posts
Quote from naklefty :
Didn't get that email, oh well..
Me neither. I have a cart full of stuff I would have ordered with free shipping. Oh well.
Feb 17, 2017
508 Posts
Joined Apr 2010
Feb 17, 2017
rekcah
Feb 17, 2017
508 Posts

Sign up for a Slickdeals account to remove this ad.

Original Poster
Feb 17, 2017
10,467 Posts
Joined Dec 2006
Feb 17, 2017
Dumpsterdiver
Original Poster
Feb 17, 2017
10,467 Posts
Feb 17, 2017
4,366 Posts
Joined May 2007
Feb 17, 2017
slowdive21
Feb 17, 2017
4,366 Posts
Is there a thread for the straight up free stuff coupons? (Not the free with purchase coupons).
Original Poster
Feb 17, 2017
10,467 Posts
Joined Dec 2006
Feb 17, 2017
Dumpsterdiver
Original Poster
Feb 17, 2017
10,467 Posts
Quote from slowdive21 :
Is there a thread for the straight up free stuff coupons? (Not the free with purchase coupons).
If you see any, post them up.
Feb 18, 2017
1,035 Posts
Joined Jan 2007
Feb 18, 2017
Oneill5491
Feb 18, 2017
1,035 Posts
Quote from slowdive21 :
Is there a thread for the straight up free stuff coupons? (Not the free with purchase coupons).
Quote from Dumpsterdiver :
If you see any, post them up.
Uploaded all "No Purchase Required" freebie coupons from HFQPDB to wiki. Took all of about 3 minutes.
Original Poster
Feb 25, 2017
10,467 Posts
Joined Dec 2006
Feb 25, 2017
Dumpsterdiver
Original Poster
Feb 25, 2017
10,467 Posts
Feb 26, 2017
41 Posts
Joined Feb 2017
Feb 26, 2017
pugslyyy
Feb 26, 2017
41 Posts
If anyone is interested, I wrote a greasemonkey script that automatically fixes the coupon barcode error, because I found having to do it manually to be annoying.

Also, if you are hunting for coupon pages by pinging a whole bunch of URLs at once in multiple windows it will automatically close any windows with "Page cannot be displayed" and only keep the good ones.

Code:
// ==UserScript==
// @name           Harbor Freight click through fix
// @author         pugsly
// @version        2017.02.26
// @description    it will remove coded links
// @lastchanges    added decodeURIComponent
// @updatetype     24
// @namespace      harborfreight.com
// @include        http://harborfreight.com/*
// @include        http://widgets.harborfreight.com/*
// ==/UserScript==


var xpathResult = document.evaluate("(//text()[contains(., 'Page cannot be displayed')])[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
var node=xpathResult.singleNodeValue;
if (node==null)
    ;
else
    window.close();

var thisLink, allLinks, linkArray;
allLinks = document.getElementsByTagName('a');
for (var j = 0; j < allLinks.length; j++) {
    thisLink = allLinks[j];
    if(thisLink.href.indexOf('http') !=-1)
	{
	linkArray=thisLink.href.split('http');
/*  thisLink.href=decodeURIComponent('http'+linkArray[linkArray.length]); */
  thisLink.href=thisLink.href.replace('cust=%%=V(@IDENTIFIER)=%%&keycode=%%=V(@KEYCODE)=%%','cust=99999999999&keycode=1002');
	}
}
Feb 27, 2017
481 Posts
Joined Jul 2006
Feb 27, 2017
naklefty
Feb 27, 2017
481 Posts
Quote from pugslyyy :
If anyone is interested, I wrote a greasemonkey script that automatically fixes the coupon barcode error, because I found having to do it manually to be annoying.

Also, if you are hunting for coupon pages by pinging a whole bunch of URLs at once in multiple windows it will automatically close any windows with "Page cannot be displayed" and only keep the good ones.

Code:
// ==UserScript==
// @name           Harbor Freight click through fix
// @author         pugsly
// @version        2017.02.26
// @description    it will remove coded links
// @lastchanges    added decodeURIComponent
// @updatetype     24
// @namespace      harborfreight.com
// @include        http://harborfreight.com/*
// @include        http://widgets.harborfreight.com/*
// ==/UserScript==


var xpathResult = document.evaluate("(//text()[contains(., 'Page cannot be displayed')])[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
var node=xpathResult.singleNodeValue;
if (node==null)
    ;
else
    window.close();

var thisLink, allLinks, linkArray;
allLinks = document.getElementsByTagName('a');
for (var j = 0; j < allLinks.length; j++) {
    thisLink = allLinks[j];
    if(thisLink.href.indexOf('http') !=-1)
	{
	linkArray=thisLink.href.split('http');
/*  thisLink.href=decodeURIComponent('http'+linkArray[linkArray.length]); */
  thisLink.href=thisLink.href.replace('cust=%%=V(@IDENTIFIER)=%%&keycode=%%=V(@KEYCODE)=%%','cust=99999999999&keycode=1002');
	}
}
Thats a great idea, I didn't even think of using GreaseMonkey for that!

Only issue, it's not working, for the link above your post for example.

EDIT: I see, it DOES work, after clicking "Print Coupon" Very nice!
Last edited by naklefty February 27, 2017 at 06:55 AM.

Sign up for a Slickdeals account to remove this ad.

Feb 28, 2017
41 Posts
Joined Feb 2017
Feb 28, 2017
pugslyyy
Feb 28, 2017
41 Posts
Quote from naklefty :
Thats a great idea, I didn't even think of using GreaseMonkey for that!

Only issue, it's not working, for the link above your post for example.

EDIT: I see, it DOES work, after clicking "Print Coupon" Very nice!
Thanks, and yes you figured out the trick - sorry should have mentioned that.

Leave a Comment

Unregistered (You)

Related Searches

Popular Deals

View All

Trending Deals

View All