Results 1 to 5 of 5

Wishlist Problem

This is a discussion on Wishlist Problem within the osCommerce 2.2 Installation Help forums, part of the osCommerce 2.2 Forums category; Hi all; I've installed the Wishlist v5 onto my bridal site with the hopes that this version would work. I ...

      
  1. #1
    New Member ladyk's Avatar
    Join Date
    Jan 2007
    Posts
    15
    Rep Power
    0


    Default Wishlist Problem

    Hi all;

    I've installed the Wishlist v5 onto my bridal site with the hopes that
    this version would work.
    I was so happy after installing I did a run through on my site and didn't
    see the usual problems with the last install. Except for one nagging problem.
    When on a product page and click the Add to Wishlist button it STILL adds the item to the Shopping Cart instead of Wishlist.
    I triple checked all the coding and everything is there, including the coding for application_top.php.
    Can anyone suggest a fix for this please???

    Thanks,
    Karen

  2. #2
    New Member ladyk's Avatar
    Join Date
    Jan 2007
    Posts
    15
    Rep Power
    0


    Default Re: Wishlist Problem

    Can any one help??

  3. #3
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default Re: Wishlist Problem

    All I can suggest is to re-read all the documentation and installation instructions as you did something incorrectly or missed a code change somewhere.

    osCMax has wishlist already installed, why not use osCMax instead of plain osCommerce?
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  4. #4
    New Member
    Join Date
    Dec 2009
    Posts
    24
    Rep Power
    0


    Exclamation Re: Wishlist Problem

    hi in includes/application_top.php

    look around line 317-330,

    for

    PHP Code:
    // Shopping cart actions
      
    if (isset($HTTP_GET_VARS['action'])) { 
    you must enter this code ---BEFORE---

    PHP Code:
    // wishlist data
      
    if(!tep_session_is_registered('wishList')) {
       
    tep_session_register('wishList');
       
    $wishList = new wishlist;
      }
    //Wishlist actions (must be before shopping cart actions)
      
    if(isset($HTTP_POST_VARS['wishlist_x'])) {
     if(isset(
    $HTTP_POST_VARS['products_id'])) {
      if(isset(
    $HTTP_POST_VARS['id'])) {
       
    $attributes_id $HTTP_POST_VARS['id'];
       
    tep_session_register('attributes_id');
      }
      
    $wishlist_id $HTTP_POST_VARS['products_id'];
      
    tep_session_register('wishlist_id');
     }
     
    tep_redirect(tep_href_link(FILENAME_WISHLIST));
      } 



    IF YOU DO NOT ADD THIS THEN THE ADD TO WISHLIST BUTTON WILL ADD THE ITEM TO THE SHOPPING CART

  5. #5
    New Member ladyk's Avatar
    Join Date
    Jan 2007
    Posts
    15
    Rep Power
    0


    Default Re: Wishlist Problem

    Hi there;

    I've tried, yet again, to install this contrib and am still having the same problem. All the coding is added including the application_top.php.
    Is anyone else having this problem??

Similar Threads

  1. problem with wishlist v2
    By nahi_sonu in forum osCommerce 2.2 Modification Help
    Replies: 2
    Last Post: 07-14-2009, 06:05 AM
  2. Wishlist 2.0
    By michael_s in forum New osCommerce Contributions
    Replies: 1
    Last Post: 08-28-2008, 04:46 AM
  3. Wishlist 2.0
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 12-06-2007, 03:55 PM
  4. Wishlist issues - sent email doesnt include wishlist links
    By slothy in forum osCmax v2 Installation issues
    Replies: 3
    Last Post: 08-31-2005, 12:53 PM
  5. Wishlist 2.3 w/BTS Problem
    By ProjectShadow in forum osCommerce 2.2 Modification Help
    Replies: 6
    Last Post: 11-15-2004, 05:39 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •