osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

Wishlist-2.0.1

This is a discussion on Wishlist-2.0.1 within the osCMax v1.7 General Mods Discussion forums, part of the osCMax v1.7 Forums category; Has anyone managed to install this mod as I realy need this to work for me. I've had a look ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 General Mods Discussion

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 01-19-2004, 11:21 AM
New Member
 
Join Date: Jan 2004
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
glynn
Default Wishlist-2.0.1

Has anyone managed to install this mod as I realy need this to work for me.
I've had a look at the files and they seem some what different from the MS2-MAX 1.5.5
Can anyone help as I'm not sure where to start.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
  #2  
Old 01-19-2004, 03:21 PM
New Member
 
Join Date: Oct 2003
Posts: 24
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
innovations
Default

Good question, I have planned to install this contrib just after I finish a few things on the task I am presently working on.

*BUMP*
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 01-20-2004, 09:59 AM
New Member
 
Join Date: Jan 2004
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
glynn
Default

As far as I can see the only files I need to change are application_top and
product_info the other files are just new files I add.
application_top seems straight forward to change but the wish list product_ info is huge against the oscdox one.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 01-25-2004, 02:44 PM
New Member
 
Join Date: Jan 2004
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
glynn
Default

I have managed to install the Wishlist 2.0.1 and everything works except the email. I can see no sign of that or how to call it.
Can anyone help?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 01-30-2004, 06:01 AM
New Member
 
Join Date: Jan 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
maverick
Default

Open wishlist.php inside the catalog/includes/languages/english directory and add the following line:
Code:
define('BOX_TEXT_SEND', 'Send to a friend');
Open wishlist.php inside the catalog/includes/modules/wishlist directory and look for lines 58-60:

Code:
//rs    $customer_wishlist_string .= '<tr><td colspan="3" align="right" class="smallText"><a href="' . tep_href_link(FILENAME_WISHLIST, '','NONSSL') . '"><u>' . BOX_TEXT_VIEW  . '</u> [+]</a></td></tr>' . "\n";
//    $customer_wishlist_string .= '<tr><td colspan="3" align="right" class="smallText"><a href="javascript:popupWindowWishlist(\'' . tep_href_link('popup_' . FILENAME_WISHLIST_HELP, '','NONSSL') . '\')"><u>'. BOX_HEADING_CUSTOMER_WISHLIST . ' Help</u> [?]</a></td></tr>' . "\n"; // Popup link
//rs    $customer_wishlist_string .= '<tr><td colspan="3" align="right" class="smallText"><a href="' . tep_href_link(FILENAME_WISHLIST_HELP, '','NONSSL') . '"><u>' . BOX_TEXT_HELP . '</u> [?]</a></td></tr>' . "\n"; // Normal link
and replace it with the following lines:

Code:
$customer_wishlist_string .= '<tr><td colspan="3" align="center" class="smallText"><a href="' . tep_href_link(FILENAME_WISHLIST, '','NONSSL') . '">' . BOX_TEXT_VIEW  . '</a> | ' . "\n";
$customer_wishlist_string .= '<a href="' . tep_href_link(FILENAME_WISHLIST_HELP, '','NONSSL') . '">' . BOX_TEXT_HELP . '</a><br>' . "\n";
$customer_wishlist_string .= '<a href="' . tep_href_link(FILENAME_WISHLIST_SEND, '','NONSSL') . '">' . BOX_TEXT_SEND . '</a></td></tr>' . "\n"; // Normal link
You will now have a Send to a friend link inside your My Wishlist infobox.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6  
Old 01-30-2004, 06:23 AM
New Member
 
Join Date: Jan 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
maverick
Default

Open wishlist_email.php and edit line 45:

Code:
$wishliststring .= $resultarray[1]."\n" . HTTP_SERVER ."/product_info.php/products_id/".$resultarray[0] . "\n\n";
like this:

Code:
$wishliststring .= $resultarray[1]."\n" . HTTP_SERVER ."/product_info.php?products_id=".$resultarray[0] . "\n\n";
This will correct the links to the products that will be sent to your friend via email.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7  
Old 01-30-2004, 07:49 AM
New Member
 
Join Date: Jan 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
maverick
Default

To display the "Send your wishlist to a friend" input box in the main wish list page, open wishlist.php in the /catalog directory and do the following:

a. cut lines 133-135
Code:
<?php
  if ($wishlist_numrows > 0 && (PREV_NEXT_BAR_LOCATION == '2' || PREV_NEXT_BAR_LOCATION == '3')) {
?>
b. and move them below this line (#162):
Code:
<!-- tell_a_friend_eof //-->
c. add </form> on top of <!-- tell_a_friend_eof //-->
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8  
Old 01-30-2004, 07:56 AM
New Member
 
Join Date: Jan 2004
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
maverick
Default

To store owners who want to add the wish list feature in their site, I have written the installation instructions specifically for MS2-MAX 1.5.5 using Wishlist 2.0.1
Attached Files
File Type: txt readme_for_ms2-max_198.txt (10.8 KB, 33 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #9  
Old 01-30-2004, 01:06 PM
New Member
 
Join Date: Jan 2004
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
glynn
Default

Thanks Guys. I thought nobody was interested so I managed to work things out for myself. This has helped me check things and will be of use to others.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #10  
Old 02-02-2004, 08:12 AM
Anonymous
Guest
 
Posts: n/a
Default Wishlist Email product link

If the links in your email do not work, "Ref: Mavericks post on Jan 30" try this.

$wishliststring .= $resultarray[1]."\n" . HTTP_SERVER . DIR_WS_CATALOG ."product_info.php?products_id=" . $resultarray[0] . "\n\n";

It worked for me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
Advertisement
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Help wishlist 2.4b auntie22 osCMax v1.7 Installation 4 04-13-2006 09:35 AM
Wishlist? kenlyle osCMax v2 Features Discussion 0 11-08-2005 03:09 PM
wishlist 3.5d auntie22 osCommerce 2.2 Installation Help 3 11-06-2005 08:46 AM
Wishlist issues - sent email doesnt include wishlist links slothy osCMax v2 Installation issues 3 08-31-2005 11:53 AM
Wishlist mod thinguy osCommerce 2.2 Modification Help 0 10-04-2004 01:33 PM


All times are GMT -8. The time now is 08:12 AM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax