Thread: wishlists 0.6

Page 19 of 24 FirstFirst ... 91718192021 ... LastLast
Results 181 to 190 of 236
  1. #181
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: wishlists 0.6

    Quote Originally Posted by stevefriedman71 View Post
    i have it installed on 1.5.1 but i can't see it in the admin... is there an admin section for this addon?

    did you make double sure you installed all the files into the exact same place on your server.

    was this a clean install or upgrade

    did you run the sql--if there was one--I can't remember if there is one--I htin so but the comp I have the folder on is not behaving right now.

  2. #182
    Join Date
    Sep 2006
    Posts
    277
    Plugin Contributions
    2

    Default Re: wishlists 0.6

    yes, all installed but not visible. I think there is a define missing. the 1.5 versions deal with the admin menu different through the sql

  3. #183
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: wishlists 0.6

    I had to go look but the one I used in my test store was below the new one listed so let me see if there are changes to the folders and I will be back

  4. #184
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: wishlists 0.6

    ok I looked and although the original creator made the latest upload?? she forgot that in the 1.5 version there is no boxes folder, hence the boxes folder in admin will not show at all. The listing in plugins is a bit confusing but maybe she hasn't...anyway

    it would seem that version .9 is the latest one it is still for 1.3.9h of zen cart not 1.5 so you will most likely have the capabillities but will not see it in admin until they update it for 1.5 of the cart.

    I can not check my test store for I removed it quite a bit ago.

  5. #185
    Join Date
    Aug 2009
    Location
    Tampa Bay
    Posts
    251
    Plugin Contributions
    1

    Default Re: wishlists 0.6

    It is listed after EZpages in Config
    to view customers list look in xtras after media type
    blessed be the day we make tomorrow a better yesterday

  6. #186
    Join Date
    Sep 2006
    Posts
    277
    Plugin Contributions
    2

    Default Re: wishlists 0.6

    still not there.

  7. #187
    Join Date
    Aug 2009
    Location
    Tampa Bay
    Posts
    251
    Plugin Contributions
    1

    Default Re: wishlists 0.6

    Quote Originally Posted by stevefriedman71 View Post
    still not there.
    try Un-install the SQL then upload/install again
    blessed be the day we make tomorrow a better yesterday

  8. #188
    Join Date
    Aug 2009
    Location
    Tampa Bay
    Posts
    251
    Plugin Contributions
    1

    Default Re: wishlists 0.6

    My on going issue is I found 2 different codes for the tpl_product_info_display
    The 1st in the sample file that takes you to an empty Shopping Cart when you click the button
    the 2nd in the Read Me file which is operational but show a TEXT Link when the customer is not Logged In instead of the Button.
    Customers tend to Overlook the text assuming it is a Fine Print info associated with the product leading to dozens of phone calls and the lost of potential customers!

    Commenting out in define files & even deleting the script lines have no affect, strangely it still shows on products page
    spent weeks on this & 4 hours alone just this morning
    Any suggestions would be GREATLY appreciated?????????
    Last edited by Lackew; 5 Nov 2012 at 02:46 PM.
    blessed be the day we make tomorrow a better yesterday

  9. #189
    Join Date
    Aug 2009
    Location
    Tampa Bay
    Posts
    251
    Plugin Contributions
    1

    Default Re: wishlists 0.6

    Opertional script
    HTML Code:
    <!--bof Wishlist button -->
    <!--<br class="clearBoth" />
    optional depending where the code is added-->
    
    <?php if (UN_MODULE_WISHLISTS_ENABLED) {
    if ( $_SESSION['customer_id'] ) {
    echo '<div id="productWishlistLink" class="buttonRow back">';
    echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"');
    echo '</div>';
    } else {
    echo '<div>';
    echo UN_BOX_WISHLIST_LOGIN_TEXT
    echo '</div>';
    }
    } else {}
    ?>
    <!--eof Wishlist button -->
    Non working script
    HTML Code:
    <!--bof Wishlist button -->
    <?php if (UN_MODULE_WISHLISTS_ENABLED) { ?>
    <div id="productWishlistLink" class="buttonRow back">
    <?php echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"'); 
    //print_r($_REQUEST);
     ?></div>
    <?php }
    else
    {}?>
    <!--eof Wishlist button -->
    blessed be the day we make tomorrow a better yesterday

  10. #190
    Join Date
    Aug 2009
    Location
    Tampa Bay
    Posts
    251
    Plugin Contributions
    1

    Default Re: wishlists 0.6

    Quote Originally Posted by Lackew View Post
    Opertional script
    HTML Code:
    <!--bof Wishlist button -->
    <!--<br class="clearBoth" />
    optional depending where the code is added-->
    
    <?php if (UN_MODULE_WISHLISTS_ENABLED) {
    if ( $_SESSION['customer_id'] ) {
    echo '<div id="productWishlistLink" class="buttonRow back">';
    echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"');
    echo '</div>';
    } else {
    echo '<div>';
    echo UN_BOX_WISHLIST_LOGIN_TEXT
    echo '</div>';
    }
    } else {}
    ?>
    <!--eof Wishlist button -->
    Non working script
    HTML Code:
    <!--bof Wishlist button -->
    <?php if (UN_MODULE_WISHLISTS_ENABLED) { ?>
    <div id="productWishlistLink" class="buttonRow back">
    <?php echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT, 'name="wishlist" value="yes"'); 
    //print_r($_REQUEST);
     ?></div>
    <?php }
    else
    {}?>
    <!--eof Wishlist button -->
    Correction to the above post, there are several codes and even 2 threads for this mode but this is the actual code that worked for me

    <!--bof Wishlist button -->

    <?php if (UN_MODULE_WISHLISTS_ENABLED) {
    if ( $_SESSION['customer_id'] ) {
    echo '<input type="hidden" name="wishlist" value="yes" />';
    echo '<div id="productWishlistLink" class="buttonRow back">';
    echo zen_image_submit(UN_BUTTON_IMAGE_WISHLIST_ADD, UN_BUTTON_WISHLIST_ADD_ALT);
    echo '</div>';
    } else {
    echo '<div>';
    echo UN_BOX_WISHLIST_LOGIN_TEXT;
    echo '</div>';
    }
    } else {}
    ?>
    <!--eof Wishlist button -->
    the 1st code was missing this line: echo '<input type="hidden" name="wishlist" value="yes" />';
    I hope this helps some1
    also in version 09 the css file has very little affect on the mode I removed style_wishlist_classic and the only thing happened was the buttons moved and the table formatting changed.
    Currently the page overflows into the header logo and left side boxes. I will post a solution here if I ever get it figured out!
    blessed be the day we make tomorrow a better yesterday

 

 
Page 19 of 24 FirstFirst ... 91718192021 ... LastLast

Similar Threads

  1. Wishlists & Attributes
    By glamourdolleyes in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Jul 2011, 08:28 PM
  2. Allow non-members access to search wishlists?
    By boutique in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 5 Feb 2009, 11:16 AM
  3. Wishlists
    By fbords in forum Basic Configuration
    Replies: 1
    Last Post: 8 Sep 2007, 05:43 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR