Zen Cart Logo
Forums / All Other Contributions/Addons / WishList v0.4 -- v1.3.7 compatible

WishList v0.4 -- v1.3.7 compatible

Locked

Views: 67,642

Results 61 to 80 of 303
This thread is locked. New replies are disabled.
2 Sep 2007, 7:46 PM
#61
nullmind avatar

nullmind

Zen Follower

Join Date:
Jul 2007
Posts:
129
Plugin Contributions:
0

WishList v0.4 -- v1.3.7 compatible

I added this on the header template

<a href="<?php echo zen_href_link(UN_FILENAME_WISHLIST, '', 'SSL'); ?>"><?php echo UN_HEADER_TITLE_WISHLIST; ?></a>

And works fine, gives me a "Wishlist" link

I was wondering, is it possible ot modify it to show

"Whislist: X items" ?

perhaps a total of items on the user's wishlists ?

25 Sep 2007, 8:22 PM
#62
kadesign avatar

kadesign

Totally Zenned

Join Date:
Feb 2005
Location:
New Jersey
Posts:
593
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

I'm sorry if this was already asked and answered...but how would I add a link to my information sidebox? Not the more information, the one with the shipping and contact us etc.

Thank you in advance,
Kelly

28 Sep 2007, 3:34 AM
#63
gabenn2 avatar

gabenn2

Zen Follower

Join Date:
Feb 2007
Posts:
109
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

try adding this to your side box template file:

$content .= '<a class="loginBoxLinks" href="' . zen_href_link(UN_FILENAME_WISHLIST, '', 'SSL') . '">' . UN_HEADER_TITLE_WISHLIST . '</a>';
29 Sep 2007, 1:05 AM
#64
supersnow avatar

supersnow

Zen Follower

Join Date:
Apr 2007
Location:
California, USA
Posts:
233
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Chris10:

I'm sure I'll be yelled at for this but I followed the installation instructions but like the problem someone else was having , when I click the add to wishlist button I get an error

1146 Table 'chris10_zc1.un_wishlists' doesn't exist
in:
[SELECT id FROM un_wishlists w WHERE w.customers_id=1 and w.default_status=1 ]

I have no clue where or how to fix this. Can someone please help a pathetic noob?

Do sure if you worked out the issue on this or not but I had the same problem. It is because I use a db prefix on my tables and the un_database_tables.php need fixed:

Find:

 define('UN_TABLE_WISHLISTS','un_wishlists');
define('UN_TABLE_PRODUCTS_TO_WISHLISTS', 'un_products_to_wishlists');

Replace with:

define('UN_TABLE_WISHLISTS', DB_PREFIX .'un_wishlists');
define('UN_TABLE_PRODUCTS_TO_WISHLISTS', DB_PREFIX . 'un_products_to_wishlists');

So for anyone else who has db prefixes you will need to update this file it is in:

includes/extra_datafiles/un_database_tables.php

10 Oct 2007, 5:49 AM
#65
patrizia avatar

patrizia

New Zenner

Join Date:
Mar 2007
Posts:
9
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Dear Wishlist Team,
I installed the new wishlist contribution and it looks really great - thank you!
I have one problem. The user has to go to a product detail page, there the ADD TO WISHLIST block appears on the right column. But if one goes out of a detail page the wishlist link disappears. At least there should be a VIEW WISHLIST or something. I suppose this is my error somewhere.
I would really appreciate help here.

Have a nice day, Patrizia

11 Oct 2007, 3:05 PM
#66
traypup avatar

traypup

New Zenner

Join Date:
May 2007
Posts:
56
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

patrizia:

I have one problem. The user has to go to a product detail page, there the ADD TO WISHLIST block appears on the right column. But if one goes out of a detail page the wishlist link disappears. At least there should be a VIEW WISHLIST or something. I suppose this is my error somewhere.

Hi Patrizia,

You didn't do anything wrong. That's the way the wishlist mod works. I put a link to the wishlist in the very top menu so there's a link throughout the site, regardless of the customer's login status or if s/he isn't on a product detail page.

hope that helps,
traypup

11 Oct 2007, 5:16 PM
#67
youniquephotos avatar

youniquephotos

New Zenner

Join Date:
Oct 2004
Posts:
40
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

disciple:

We have installed the WishList and it is running without issue EXCEPT for one thing. It seems that when someone adds their products from the wishlist they do not actually get their downloads. (Our store is full of downloadable products only). We think it may have something to do with the product attribute but are not sure how to test it or fix it.

If the customer adds the product manually all products are received as downloads.

Anyone have any ideas?

Thanks

Rick

I am having the same issues as Rick, is there a fix. The downloads do have attributes that are selected by default. If you add the product from inside the wishlist, it charges the customer, but does not provide a link. Is there a way to repair this?

Thank you for any assistance.

13 Oct 2007, 6:18 AM
#68
phlash avatar

phlash

New Zenner

Join Date:
Dec 2006
Location:
montreal
Posts:
25
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Thanks for the great mod!:smile:
everything seems fine for me, at the exception of google analytics...
i get the following errors from the wishlist pages...

Warning: main(includes/templates/template_default/un_wishlist_email/google_analytics.php): failed to open stream: No such file or directory in /raid/home/phlash/thaphlash/includes/templates/custom/common/tpl_main_page.php183

 on line Fatal error: main(): Failed opening required 'includes/templates/template_default/un_wishlist_email/google_analytics.php' (include_path='.:/usr/local/scripts/php-441/lib/php') in /raid/home/phlash/thaphlash/includes/templates/custom/common/tpl_main_page.php183
```any insight appreciated,
23 Oct 2007, 8:02 AM
#69
mikeyg avatar

mikeyg

Totally Zenned

Join Date:
May 2005
Posts:
515
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

phlash,

don't know if you have solved this. I had the same issue. I just stuck that google analytics file in each of the un_wishlist directories and it seemed to do the trick.

regards

MG

24 Oct 2007, 4:55 AM
#70
phlash avatar

phlash

New Zenner

Join Date:
Dec 2006
Location:
montreal
Posts:
25
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

MikeyG,

what google file exactly are you reffering to?
thanks for the help

24 Oct 2007, 7:58 PM
#71
rmn avatar

rmn

New Zenner

Join Date:
Aug 2005
Posts:
43
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

I've seen the wishlist setup on someone elses site. The functionality I saw was the following:
You login, view a product, click Add to Wishlist. The product is put in the wishlist. You then click on WishList and see all the products that were added. Within the Wishlist, there is a 'Add to Cart' button. If you click on that button, you are taken to the product rather than have it directly added to the cart. Is this configurable?

We are looking for a way to 'mass' order some products. Will the wishlist handle this or is there another contribution to support the mass order of products based on the person who is logged in.

Thank you,
Rhonda

25 Oct 2007, 12:12 AM
#72
bubblegumgoods avatar

bubblegumgoods

Zen Follower

Join Date:
Jan 2006
Posts:
103
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Is there a code that I could use that I could just simply copy & paste into the "Install SQL Patches" section of my admin?

If so, could somebody PM me the code?

I'd really appreciate it, as all these links, etc. in this post are confusing me.

Thanks so much.

25 Oct 2007, 4:35 AM
#73
phlash avatar

phlash

New Zenner

Join Date:
Dec 2006
Location:
montreal
Posts:
25
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Well, i have installed the 'google_analytics.php file in the un_wishlists folders and it fixed my error!!!:clap:

good to know...

27 Oct 2007, 10:01 PM
#74
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,841
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

When viewing wish list when signed into your account there is a add to cart check box. Checking this box and clicking update will add the product to the cart......now for the problem....in our store everything is price by attribute....and I thought that if products had attributes, clicking update would send you to the product page instead of the cart. My problem is that it is adding the product to the cart with no attributes and a zero price.....anybody know how to fix the action to work correctly or to shut off the cart checkbox?

12 Nov 2007, 5:55 PM
#75
aevalin avatar

aevalin

New Zenner

Join Date:
Jan 2004
Posts:
8
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

This works beautifully. I was able to add an image for a link, and add a link to the My Account page. Very nice Contribution!

14 Nov 2007, 7:52 PM
#76
scarlet avatar

scarlet

Zen Follower

Join Date:
Jun 2004
Posts:
127
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

I'm having the same problem as barco57. From the extended view, adding to cart takes you to the product page to pick a size. But from compact view, checking the box "add to cart" adds it without a size.

I'm happy just removing that checkbox from the compact page, but I can't find that code anywhere - just the extended view code.

25 Nov 2007, 5:49 PM
#77
keithstric avatar

keithstric

New Zenner

Join Date:
Nov 2007
Posts:
12
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Thanks for the great contrib. I have installed the wishlist and added the sidebox per the readme file. When I go to a product page I see the sidebox and click the "Add to Wish list" button but the product isn't added to the wishlist. I found one other post somewhere asking this same question but it seems they didn't have the sidebox enabled. I have enabled the sidebox but still don't get anything in the wishlist.

Also, I've been reading and it seems some changes are required for application_top.php but the procedure isn't stated in the readme file and I can't find it anywhere. Hopefully someone can point me in the right direction.

Please help.
Thanks,
Keith

25 Nov 2007, 8:42 PM
#78
keithstric avatar

keithstric

New Zenner

Join Date:
Nov 2007
Posts:
12
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

Nevermind, helps if I download the right version, I had downloaded 0.31 instead of 0.41 :oops:

28 Nov 2007, 10:41 AM
#79
alfo avatar

alfo

Zen Follower

Join Date:
Apr 2006
Location:
Sydney, Australia
Posts:
103
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

:( I got really excited as this is just what I am looking for except....

it doesn't predefine attribs...me very sad!

Designing a store to allow customers to order coffees, one product 10 attribs and this would be a great time saver. ANyone adapted something to work with attribs as well?

ALFO

2 Dec 2007, 6:30 PM
#80
joshlunsford avatar

joshlunsford

New Zenner

Join Date:
Dec 2007
Posts:
1
Plugin Contributions:
0

Re: WishList v0.4 -- v1.3.7 compatible

I am also wondering how to include attributes when adding to the wishlist. Anyone figure this out?