To repair the massive textarea and the blank message area with the "8" in the text of the share wishlists/tell a friend function of the wishlist, modify line 26 in
/catalogue/includes/templates/YOURTEMPLATE/templates/un_wishlist_email/tpl_un_wishlist_email_default.php from:
Code:
<?php echo zen_draw_textarea_field('message', 'soft', 40, 8, sprintf(FORM_DEFAULT_BODY, STORE_NAME, $from_name)); ?>
and replace with:
Code:
<?php echo zen_draw_textarea_field('message', 'soft', 9, sprintf(FORM_DEFAULT_BODY, STORE_NAME, $from_name)); ?>
To repair the session id from displaying in the wishlist tell a friend email:
Modify /catalogue/includes/modules/pages/un_wishlist_email/header_php.php (this fix is discussed in the wishlist contribution support forum)
Replace (around line 51):
Code:
$email_body .= sprintf(TEXT_EMAIL_LINK, $from_name, zen_href_link(UN_FILENAME_LIGHTBOX_FIND, 'wid=' . $id));
with:
Code:
$email_body .= sprintf(TEXT_EMAIL_LINK, $from_name, zen_href_link(UN_FILENAME_LIGHTBOX_FIND, 'wid=' . $id, 'NONSSL', false));
All in all, I've been able to successfully port the wishlist contribution to a lightbox. Since everything has attributes, the compact view does not add multiple items to the cart, so I'll be modifying that feature out.
Thanks,
-Christine