]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
]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
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.![]()
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;
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
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...
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
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"'); ?>
![]()
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!!
Hi joyjoy, did you try the fix in the thread I quoted above its worth trying it fixes many issues. Best of luck![]()
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.
Bookmarks