

dblake
Members-
Content count
841 -
Joined
-
Last visited
About dblake
- Birthday 03/06/1978
Profile Information
-
Real Name
Dennis
- Website
-
This is the Wishlist 3.0+ thread. I suggest installing the latest version of that which the last one I put out was 3.5d.
-
Change 'p.products_id' to 'pd.products_id' in the query that is erroring. Some people's MySQL's are setup differently and when i did this 2-3 years ago, I didn't take that into consideration. Dennis
-
Just comment the lines that were put into the checkout_process.php page. Thats what removes the items from the user's wishlist.
-
Responded :)
-
Wow its amazing people are still using the wishlist. I figured OSC would have created a new version and made this contribution absolute. :)
-
$1000 says you have the main file as your language file. So when the language file is included it is also including app top again because you uploaded the wrong one. Any takers?
-
It's supposed to work like that. Just look in the wishlist.php page and comment out the check to see if the product_status is sold out or w/e and just don't do that part. I commented the code pretty good, you should be able to see where the checkbox is displayed and where its not. Just make it only display.
-
=) Nice, yea thats how I learned php LOL. Have fun!
-
3.5+
-
Yea can't remove it. If you have "1 of a kind" products then when you delete that product out, since it will never be sold again. It will automatically get deleted from everyone's wishlist. As far as admin reports, I didn't build that so I dunno.
-
Your not getting your "wishlist" variable. Make sure the button's name and value are correct on product_info.php. You have register globals off? That could be another issue not sure... Anyway I have to go out. But your problem lies in there. Paste your findings, productinfo.php and applicationtop and I'll review it when I get back.
-
This is how it works... The wishlist code HAS to be before the shopping cart actions in order to work. When a user presses the Add to Wishlist button, it "sets" a $_POST variable with a value. The code in app_top checks to see if that variable "isset" and is the correct value. Add this: print_r($_POST); exit(); After the wishlist actions, BEFORE the shopping cart actions. That will print out the post array to the screen and see if your getting your values. Save your app_top with the new code while your on the product_info page then click the add to wishlist button. Paste me the output. -Dennis
-
Sounds like you didnt make the correct changes to application_top.php OR you have CSS buttons installed and didn't search for that answer ;)
-
Well to solve it, I would recommend installing a phpmailer class that sends/formats the emails for you. Its easy to implement and you can just change the wishlist page to use it. It sends all the "appropirate" headers out and makes it easy for mostly all email clients to display. -Dennis
-
Thats the email receiving program. I think aol doesn't hotlink, there may be some others. Try a different email client. Thats on the users end not the code in.