Page 11 of 32 FirstFirst ... 91011121321 ... LastLast
Results 101 to 110 of 312
  1. #101
    Join Date
    Aug 2004
    Posts
    112
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Hey, thanks for the awesome contrib, I have a slight problem though.

    When I click add to wishlist, it takes you to the wishlist, but doesn't add the item.
    I can manually add the item to my database and it shows up fine on the site.

    I have tried v0.31 as well as v0.41, I am guessing that its not working because I am running an older version of zencart (Zen Cart 1.2.1, Patch: 1, Database Patch Level: 1.1.2).

    If so, could you please help and tell me which files I should edit to get this working properly for this version of zen.

    Thanks!

  2. #102
    Join Date
    Oct 2006
    Posts
    32
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Hi there, Thanks for this addon, it's great!
    One thing I would like to know, is it possible to add a button on the actual product page 'Add to wishlist' instead of it being in a sidebox?

    Also in my admin>extras>wishlists when I click it give me a 404 error page not found, but everything seems to be working fine on the front end of the site, strange.....any idea?

    thx

  3. #103
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    1. From back in the day:http://www.zen-cart.com/forum/showth...t=35842&page=7
    2. sounds like u might try to re-install WL on the admin side

  4. #104
    Join Date
    Oct 2006
    Posts
    32
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Quote Originally Posted by dharma View Post
    1. From back in the day:http://www.zen-cart.com/forum/showth...t=35842&page=7
    2. sounds like u might try to re-install WL on the admin side
    thanks dharma, worked a treat, now just to work out how to change it from a text link to an image link....

  5. #105
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Quote Originally Posted by R-Lo View Post
    thanks dharma, worked a treat, now just to work out how to change it from a text link to an image link....
    Try this:

    To create an actual button for your product pages ...

    Go to includes/languages/english/button_names.php and add the following

    Code:
    define('BUTTON_IMAGE_WISHLIST', 'button_wishlist.gif');
    define('BUTTON_WISHLIST_ALT', 'Add To Wishlist');
    Now save that file to includes/languages/english/YOUR_CUSTOM_TEMPLATE_NAME/button_names.php


    Create a button image that you'd like to include on your product page, save it as button_wishlist.gif to the includes/templates/YOURTEMPLATE/images/buttons/english folder.


    On your product page add the following where you'd like the button to show up.

    Code:
     <?php 
    // (un): start wishlist link
    echo  '<a href="' . zen_href_link(UN_FILENAME_WISHLIST, zen_get_all_get_params(array('action', 'products_id')) . 'products_id='.(int)$_GET['products_id'].'&action=un_add_wishlist') . '">' . zen_image_button(BUTTON_IMAGE_WISHLIST, BUTTON_WISHLIST_ALT) ?> </a>
    // (un): end wishlist link
    ?>
    Hope that helps.

    Matt

    Zen Cart and it's community are the best!!

  6. #106
    Join Date
    Oct 2006
    Posts
    32
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Thanks matt I was almost there when I saw your reply, my php coding has alot to be desired, just missed out on 'zen_image_button' line of code

    thanks for the reply

  7. #107
    Join Date
    Apr 2007
    Posts
    8
    Plugin Contributions
    0

    Have a Drink Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Help! And, please forgive me, but I'm a genuine novice at this and don't understand all the lingo, etc.

    I've copied all of the files to the appropriate modules except I don't understand the #1 instruction regarding 1. [Create Tables]. I checked my configure.php and I do not have a table, so am I supposed to insert the 'un_wishlists' and 'un_products_to_wishlists' on line 52 in the configure.php file?

    I didn't and and when I launched, I received this message on my website:

    Warning:
    Fatal error: main(): Failed opening required 'includes/templates/template_default/sideboxes/tpl_un_wishlist.php' (include_path='.:/usr/local/lib/php') in /home/content/xxxx/html/includes/modules/sideboxes/un_wishlist.php on line 47

    I double-checked, and the file is there.

    I apologize for being the pain and/or idiot I am, but please help me?

  8. #108
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Create tables 'un_wishlists' and 'un_products_to_wishlists' using 'un_wishlist.sql'
    The copy of the mod that you have should have a un_wishlist.sql file, you need to copy the contents of the file and then paste that into the text area in admin>tools>install sql patches and hit send. The install sql patches tool will insert DB prefixes for you so it is not necessary to add them before running the sql through the tool
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  9. #109
    Join Date
    May 2006
    Posts
    321
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    My tables had a prefix. I ran the sql patch through the admin panel so it did add the appropriate prefix, but I get this error:

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

    It isn't adding the prefix here so it isn't finding the table...help?

  10. #110
    Join Date
    May 2006
    Posts
    321
    Plugin Contributions
    0

    Default Re: WishList v0.4 -- ZenCart 1.3.7 compatible

    Never mind, I also figured it out, but I think I'll share the solution for future frustrated users ;)

    in includes>extra_datafiles>un_database_tables.php

    add the prefix to the table names defined here.

 

 
Page 11 of 32 FirstFirst ... 91011121321 ... LastLast

Similar Threads

  1. Wishlist 0.9
    By vinnyna in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Nov 2011, 03:52 PM
  2. 1.3 Compatible Contributions
    By borzoid in forum All Other Contributions/Addons
    Replies: 83
    Last Post: 26 Apr 2009, 11:50 PM
  3. MZMT compatible?
    By robeartoesart in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 4 Oct 2006, 01:29 PM

Posting Permissions

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