null
Reviews

Product Reviews

reviews
  Loading... Please wait...
Christmas Sale! Use coupon code: MERRYGROWING

Your Shopping Cart

Items in cart must be a total of $19 or more. Please add additional products to the cart to proceed.

Subtotal:
Gift Wrapping:
Discount:
Estimate Shipping & Tax
Shipping ():
Handling:
Grand Total:
4x Buyer Protection

There are no products in your cart.

To add a product to your cart, first browse for it or use the search box and then click its "Add to Cart" button.

Continue Shopping on the Dealzer Hydroponics home page.
Guest

Checkout FAQ

Why do you need my email address?

We use your email address to communicate with you every time there is an update on your order.

Why do you need my phone number?

We use the phone number only when we need to communicate with you about something concerning your order. However most of our communication will take place through email.

Is my information kept confidential?

Yes, all information is kept private in the Big Commerce servers. We are only able to see shipping details from our end and your credit card number is hidden by Paypal.

Do you use stealth shipping?

Yes. Your package will be shipped in plain box shipping with no outside indication of the contents.

When will my package arrive?

99% of the products will arrive in a few short days. The only items that take a bit longer are some of the grow systems that cost above $1500 as those are shipped freight and have to be manufactured. Either way, if there is any delay, we have posted it on the product pages.

Do you ship worldwide or only to the United States and are there any extra costs incurred for international shipping?

We ship to the US and Canada however we only process grow box or grow tent orders to Canada.

Do you use signature on delivery?

Yes we do if the order is of high value.

What if I am not home to pick up the item.

We will automatically email if we have difficulty delivering your package. If there is any further delay, we will call you to notify you.

What if I need help with my hydroponics system? Can I call you?

Yes you can! You get free, unlimited tech support for the life of your product. If you ever get stuck or confused, simply give us a call and we will connect you to our tech support team.

Do your hydroponics systems come with warranty?

Warranty varies but you get a lifetime warranty on many Dealzer products and usually a 3 year warranty on other products. For smaller 3rd party items, please refer to the manufacturer for warranty details and call us if you need help doing so.

I have money in my account, but my order was declined? Why is this happening?

The main reason for this is because your bank wants you to call and authorize the charge. Simply call your bank and they will unlock the card.

Can I use gift cards?

Yes, you can do so online or call us at 888-HYDRO-81 for a phone order.

What is your physical address?

Our address for all deliveries & returns is 3845 Benton Road, Paducah, KY 42003.

Identity Theft - Unauthorized Card Usage

We take identity theft extremely seriously. Please do not use another person credit or debit card without their permission. We are forced to report anyone who participates in identity theft.

Coupon Code

If you have a coupon code, enter it in the box below and click 'Go'.





/* JS to get Cart items and data */ // we will need to store all the basket information in a cookie, and we will set the cookie expiration to 24 hrs // to do this lets create the expiration date Variable var date = new Date(); date.setTime(date.getTime()+(1*24*60*60*1000)); var CED = date.toGMTString(); // 1st create a function that filters through cart items one by one and add them to the "prodlist" array function collectProducts(){ // next create a array for products in cart var prodlist = []; // find cart item list and storw items in array var cartItems = document.getElementById("cartForm").getElementsByTagName("table")[0].getElementsByTagName("table"); // now use a for loop to filter through each cart item for (i = 0; i < cartItems.length; i+=6) { // now we need to create the items we need for the cart items starting with the products id // product id is found in the image src atribute so 1st lets fetch the id by creating a function function fetchId(){ var srcsplit = cartItems[i].getElementsByTagName("img")[0].getAttribute('src').split("/"); // the id can be found in the url of the image so 1st I split the url into an array, once I do I can return the id value. return srcsplit[5];// the product id is placed in the 6th item [5] in the 'srcsplit' array }; var prodid = fetchId(); // next is products price var prodprice = cartItems[i].getElementsByClassName("CartItemIndividualPrice")[0].innerHTML.replace("$","").trim(); //we remove the dollar sign from price with the replace function and use trim to remove any spaces or return lines // last is the quantity. the quanitity is in a select tag so we will need to write a function to find the quantity function findQty() { // we create a quantity variable to store array of quantity options var qtyarray = cartItems[i].getElementsByClassName("quantityInput")[0].getElementsByTagName("option"); //next write a for loop to filter through the array to find the selected quantity for (j = 0; j < qtyarray.length; j++) { // check for the selected option if (qtyarray[j].getAttribute("selected") == "selected") { // return that options Value return qtyarray[j].innerHTML; };// end of if statment that checks selected quantity }; // end of J for loop, this filtered through options }; // end of findQty Function // now set that value in the product quantity for this cart product var prodqty = findQty(); // last push this carts product information to the product list array prodlist.push({ id: prodid, price: prodprice, quantity: prodqty }); // now we need to store these prods into a cooke for the transaction page document.cookie="cprodid" + i + "=" + prodid + "; expires=" + CED + "; path=/"; document.cookie="cprodprice" + i + "="+ prodprice + "; expires=" + CED + "; path=/"; document.cookie="cprodqty" + i + "="+ prodqty + "; expires=" + CED + "; path=/"; }; // end of for loop thats filtering through cart items return prodlist; };// End of Function // last part is to store the array items in a variable by running the fucntion var prods = collectProducts(); // now we can use this array for the basket tag