
Originally Posted by
dharma
I am concerned about my customers privacy.
1. How to make the wishlist default to "private" instead of "public" when a customer creates a wishlist?
If you look in
includes/classes/un_wishlist_class.php
around line 655 it should say
(this is part of the createWishlist function)
Code:
function createWishlist($name='', $comment='', $default_status=0, $public_status=1) {
I'm guessing if you change public status to 0 (Nought or Zero) like the below
Code:
function createWishlist($name='', $comment='', $default_status=0, $public_status=0) {
It should work
I haven't tested it as i currently don't even have the option to allow private/public wishlists appearing
edit---------------
Ok I didn'y realise the post above me was a month old
Bookmarks