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