Thread: Wishlist

Page 16 of 38 FirstFirst ... 6141516171826 ... LastLast
Results 151 to 160 of 378
  1. #151
    Join Date
    Mar 2010
    Location
    California
    Posts
    236
    Plugin Contributions
    0

    Default Re: Wishlist

    ]There is a thread that lists the Add-ons that have been tested with 1.3.9 and it is not on the list.

    Here is the link to that thread.

    http://www.zen-cart.com/forum/showth...ht=working+139

    Hope it helps.

    BigAl

  2. #152

    Default Re: Wishlist

    I've got it working in 1.3.9f - sort of. I can get the sidebox to work, but I'd much rather have the button on each product page. So far no luck with that.

  3. #153
    Join Date
    Oct 2010
    Location
    Hyderabad,india
    Posts
    1
    Plugin Contributions
    0

    Default Re: Wishlist

    Quote Originally Posted by Jayreis View Post
    I have an issue I know whats wrong but dont know what file to go into inorder to fix it.

    when I add an item to my wishlist I get this error
    1146 Table 'diecast_zc2.un_wishlists' doesn't exist
    in:
    [SELECT id FROM un_wishlists w WHERE w.customers_id=2 and w.default_status=1 ]

    the issue is the table is called
    'diecast_zc2.zen_un_wishlists'
    not
    'diecast_zc2.un_wishlists'

    so what file do I need to fix this in?

    thanks
    before any sql query execution take a back up of ur data base...its a data base problem try to execute the query again
    `# WishList v0.5 SQL Load for MySQL databases


    # --------------------------------------------------------
    #
    # Table structure for table un_wishlists
    #

    DROP TABLE IF EXISTS `un_wishlists`;
    CREATE TABLE `un_wishlists` (
    `id` int(11) NOT NULL auto_increment,
    `customers_id` int(11) NOT NULL default '0',
    `created` datetime NOT NULL default '0000-00-00 00:00:00',
    `modified` datetime NOT NULL default '0000-00-00 00:00:00',
    `name` varchar(255) default NULL,
    `comment` varchar(255) default NULL,
    `default_status` tinyint(1) NOT NULL default '0',
    `public_status` tinyint(1) NOT NULL default '1',
    PRIMARY KEY (`id`)
    ) TYPE=MyISAM;


    # --------------------------------------------------------
    #
    # Table structure for table un_products_to_wishlists
    #

    DROP TABLE IF EXISTS `un_products_to_wishlists`;
    CREATE TABLE `un_products_to_wishlists` (
    `products_id` int(11) NOT NULL default '0',
    `un_wishlists_id` int(11) NOT NULL default '0',
    `created` datetime NOT NULL default '0000-00-00 00:00:00',
    `modified` datetime NOT NULL default '0000-00-00 00:00:00',
    `quantity` int(2) NOT NULL default '1',
    `priority` int(1) NOT NULL default '2',
    `comment` varchar(255) default NULL,
    PRIMARY KEY (`products_id`,`un_wishlists_id`)
    ) TYPE=MyISAM;

  4. #154
    Join Date
    Sep 2010
    Posts
    129
    Plugin Contributions
    0

    Default Re: Wishlist Side Box

    Hi, does anyone know if this wish list addon
    http://www.zen-cart.com/index.php?ma...oducts_id=1569

    is supposed to display any sidebox?

    I mean its all working correctly for me except no sidebox

    It is actually listed in the admin Layout Boxes Controller and I set it to ON still no sidebox appears on my page...

    Any ideas what files best to check?

    Thank You

  5. #155
    Join Date
    Sep 2010
    Posts
    129
    Plugin Contributions
    0

    Default Re: Wishlist

    ASLO I cant seem to change the page title... "Wish List: Default"
    I tried looking in all the php files I cant find a thing...

  6. #156
    Join Date
    Sep 2010
    Posts
    129
    Plugin Contributions
    0

    Default Re: Wishlist

    so sorry to ask so many questions...
    Does anyone know how to control the image size in the WISHLIST,
    Some of my images are normal and some are HUGE!

    thanks so much

  7. #157
    Join Date
    Sep 2010
    Posts
    129
    Plugin Contributions
    0

    Default Re: Wishlist

    I FOUND THE FIX on
    http://www.zen-cart.com/forum/showth...+size+wishlist

    Ill paste it here...

    Modify line 76 in /catalogue/includes/templates/YOURTEMPLATE/templates/un_wishlist_find/tpl_un_wishlist_find_default.php
    Code:
    <?php echo zen_image(DIR_WS_IMAGES . $products->fields['products_image'], $products->fields['products_name'], '', '', 'class="productlist"'); ?>
    Replace with: (modify SMALL to desired size):
    Code:
    <?php echo zen_image(DIR_WS_IMAGES . $products->fields['products_image'], $products->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'class="productlist"'); ?>
    and

    Modify line 93 from the original code in
    /catalogue/includes/templates/YOURTEMPLATE/templates/un_wishlist/tpl_un_wishlist_default.php from this:
    Code:
    <?php echo zen_image(DIR_WS_IMAGES . $products->fields['products_image'], $products->fields['products_name'], '', '', 'class="productlist"'); ?>
    and replace with:
    Code:
    <?php echo zen_image(DIR_WS_IMAGES . $products->fields['products_image'], $products->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'class="productlist"'); ?>

  8. #158
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Wishlist

    Hello, does anyone know how I would adjust the width of the form/centerbox when viewing the wishlist? It's overlapping a little on my sideboxes.

    Also, I take it that you can't rename the header where is says Wish List : default?

    Thank you!!

  9. #159
    Join Date
    Sep 2010
    Posts
    129
    Plugin Contributions
    0

    Default Re: Wishlist

    Hi joyjoy, did you try the fix in the thread I quoted above its worth trying it fixes many issues. Best of luck

  10. #160
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Wishlist

    Yes I did checkout that thread. It helped with resizing the pictures that were being shown in the wishlist so that's good.

    However, I still don't see anything on how I can adjust the center box.

 

 
Page 16 of 38 FirstFirst ... 6141516171826 ... LastLast

Similar Threads

  1. v151 Wishlist
    By Kevin205 in forum General Questions
    Replies: 0
    Last Post: 15 Jan 2013, 01:45 AM
  2. Wishlist
    By simplemedia in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 20 Apr 2012, 08:40 PM
  3. Wishlist 0.9
    By vinnyna in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 23 Nov 2011, 03:52 PM
  4. 1.5.0 wishlist?
    By trickobrien in forum Upgrading to 1.5.x
    Replies: 2
    Last Post: 21 Oct 2011, 07:16 PM
  5. Wishlist
    By Dutchman in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 3 Oct 2007, 02:37 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR