Hello there,
I would like to put a wishlist for my website, I used to use a wishlist wich worked with an external website. But now I want to have something that stays on my website.
my website is: www.alepia.ch
Hello there,
I would like to put a wishlist for my website, I used to use a wishlist wich worked with an external website. But now I want to have something that stays on my website.
my website is: www.alepia.ch
www.alepia.ch Alepia suisse
ok I found wishlists in "Free Software addons" but actually I installed it but when clicking add to wishlist I get this error:
1146 Table 'alepiach_zc1.un_wishlists' doesn't exist
in:
[SELECT id FROM un_wishlists w WHERE w.customers_id=1 and w.default_status=1 ]
What's wrong? What should I do?
www.alepia.ch Alepia suisse
Follow the instructions in the readme.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
It's not about following the instructions, as they don't tell you what to do if you have a zen prefix(well they say very little!), but thank you!
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:
Code:
define('UN_TABLE_WISHLISTS','un_wishlists');
define('UN_TABLE_PRODUCTS_TO_WISHLISTS', 'un_products_to_wishlists');
Replace with:
Code:
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
![]()
www.alepia.ch Alepia suisse