Jim, my admin folder is renamed so that shouldn't be the problem.
Regarding seeing the WishList in the page details, I noticed that you are using a custom/modified template for your page (with an 'Ask us about this item' button). Since this is the case, modify your custom tpl_product_info_display.php file to include the following code wherever you want the wishlist button to appear
PHP Code:
<!--bof Wishlist button -->
<div id="productWishlistLink" class="buttonRow back"><?php 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_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT) . '</a>'); ?></div>
<!--eof Wishlist button -->
Alternatively, you can enable the Wish List sidebox through the admin (but I guess your admin doesn't look too happy at the moment).
Regarding the admin, my suggestion is to check for any typos (or incorrect quotes) in the un_database_tables.php file. The only change should have been to add DB_PREFIX . before the current filename. As a temporary test, you could even put in the exact database name instead e.g. define('UN_TABLE_WISHLISTS', 'zen_un_wishlists'); and see if that made any difference.
Side Issue - I created a user on your site so that I could confirm that the wishlist wasn't being shown when logged in. When I submitted the page, it came back with a message about having to enter a state so I did that and re-submitted and ended up at a blank page. I clicked back twice and found that I was logged in.
Bookmarks