Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter

  Wishlist 2.0

The following osCommerce contribution is a free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
Attached are small modifications for Wish list (http://addons.oscommerce.com/info/1682) so that it will work with AJAX BUY Now Contribution(http://addons.oscommerce.com/info/4105)

Working Demo can be found here : http://cartzlink.com/product_info.php/cartz-link-p-43

Thanks
added Turkish language. This pack is full only i added Turkish language files. Please backup your files and sql. its your own risk.

have fun.

contact yahoo ID : kilikya
msn : satis@ceyhanbilisim.com

Eklentiye sadece Türkçe dil dosyası eklenmiştir. Kurulum denememiştir.
Paket tam sürümdür.
Oluşabilecek tüm riskler yükeyene aiittir. Her zamanki gibi yedeklerinizi alınız ve kuruluma geçiniz. faydalı olması dileklerimle

irtibat için yahoo : kilikya
msn : satis@ceyhanbilisim.com
This update includes ALL of the files needed to install this add on, for a vanilla install of osc, just upload and run the SQL.

Also includes manual files.

INSTALL file has been updated and made easier to follow.

IF YOUR ADD TO WISH LIST BUTTON ADDS AN ITEM TO THE SHOPPING CART THEN YOU HAVE NOT UPDATED YOUR APPLICATION_TOP.PHP
This is all of my updates in one package, with the install instructions.
DO NOT E MAIL ME, use the forum for any problems.
ta.
wishlist.php update

Due to the many mails I am getting about the remove from wishlist to cart, I have produced this quick update.

In this release I have

1) Replaced the $HTTP_POST_VARS with the up to date $_POST
2) Updated the code so that now, when a customer moves an item from the WISHLIST to the SHOPPING CART it will be removed from the WISHLIST immediately.


BACK UP FIRST!

To use simply replace your file (wishlist.php) with this one.

I am working on the install instructions now and will release as a new version when done for now you will be OK using the older 3.5

Please advise if you find any problems with this update.

This version brings together a lot of the individual updates plus some of my own work
It was all over the place and took ages to install update and get working, help files have been included as they were missing, folder names have been corrected it was a mess!
I have combined the Admin stats and the cookies save into this release.
This version works!
E Mail sends
You can empty the wish list and it works
PHP Errors have gone
Upgraded to work with version 2.2rc2a

Enjoy :-)

when user delete products from wishlist and than rebot browser, wishlist show that products cause load are from cookie,

to fix it do:


find:



/*******************************************************************
****************** DELETE PRODUCT FROM WISHLIST ********************
*******************************************************************/

if (isset($HTTP_POST_VARS['add_wishprod'])) {
if(isset($HTTP_POST_VARS['delete_prod'])) {
foreach ($HTTP_POST_VARS['add_wishprod'] as $value) {
$wishList->remove($value);
}

}
}






and change for :


/*******************************************************************
****************** DELETE PRODUCT FROM WISHLIST ********************
*******************************************************************/

if (isset($HTTP_POST_VARS['add_wishprod'])) {
if(isset($HTTP_POST_VARS['delete_prod'])) {
foreach ($HTTP_POST_VARS['add_wishprod'] as $value) {
$wishList->remove($value);
}

// create cookie
$days = 30;
$time = time() + (3600 * 24 * $days);
$cook_id = serialize($wishList->wishID);
tep_setcookie('wish', $cook_id , $time);


}
}


   Posted on: 10/14/2008     See contribution details Request Installation with Paid service