Page 13 of 21 FirstFirst ... 31112131415 ... LastLast
Results 121 to 130 of 210
  1. #121
    Join Date
    Aug 2007
    Posts
    118
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    I got it working and iirc it was something stupid that I was or wasn't doing. I'll review the code and css and let you know what I have, which is working!

    Cheers
    GAM

  2. #122
    Join Date
    Aug 2007
    Posts
    118
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    Quote Originally Posted by therummagehole View Post
    I give up, tried everything I can think off. I'm sure this is an easy fix, i'm just out of my depth lol
    Okay, this is what I did, which works for me ;-) I realized after seeing your post that I never actually got back to this as looking at it again now it is not quite right... but does still work.

    tpl_product_info_display.php:
    PHP Code:
    <!-- bof save for later -->
            <?php 
              
    if (isset($_SESSION['customer_id']) && $_SESSION['customer_id'] != '') {
                  echo 
    "&nbsp;"
                  echo 
    '<input class="cssButton submit_button button_save_for_later" onmouseover class="cssButtonHover submit_button button_save_for_later" onmouseout class="cssButton button_save_for_later" type="submit" value="' BUTTON_SAVE_FOR_LATER_PRODUCT_ALT '" name="sfl" />' 
              }
            
    ?>
    <!-- eof save for later -->
    stylesheet_css_buttons.css:
    I added these to my existing 'button_in_cart' CSS as/where appropriate. I use a 'button_in_cart_lg' version for the Add to Cart button on the product info page and have the 'save for later' button looking the same as 'add to cart'.

    input.button_save_for_later
    input.button_save_for_later:hover
    input.button_save_for_later:active

    Hope this helps.

    Cheers
    GAM

  3. #123
    Join Date
    Aug 2007
    Posts
    118
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    For anyone wanting to use the same hard-coded workaround, to avoid conflicts, probably best to use...
    BUTTON_SAVE_FOR_LATER_PRODUCT
    which is in sfl_defines.php too and, I believe, intended for use on Product_Info pages.

    In tpl_product_info_display.php
    Replace:
    PHP Code:
    echo '<input type="submit" value="' BUTTON_SAVE_FOR_LATER_PRODUCT_ALT '" name="sfl" />'
    With:
    PHP Code:
    echo '<input class="cssButton submit_button button_save_for_later_product" onmouseover class="cssButtonHover submit_button button_save_for_later_product" onmouseout class="cssButton submit_button button_save_for_later_product" type="submit" value="' BUTTON_SAVE_FOR_LATER_PRODUCT_ALT '" name="sfl" />' 
    In stylesheet_css_buttons.css, add the following with your own formatting to suit:
    Code:
    input.button_save_for_later_product{}
    input.button_save_for_later_product:hover{}
    input.button_save_for_later_product:active{}
    Cheers
    GAM

  4. #124
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Save For Later Support Thread

    v1.3.9h Abbington_Mega template

    Hello Scott,

    I have installed SFL and it is working like a charm - only issue is I cannot get the 'Save for Later' button to appear on the products info page - I have checked my install and file mods against your instructions so I am stumped. Do I have to do anything to the .css files in the template?

    cheers, Mike

  5. #125
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,684
    Plugin Contributions
    123

    Default Re: Save For Later Support Thread

    You have to be logged in to see the button. Are you logged in when you are testing?
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  6. #126
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Save For Later Support Thread

    Quote Originally Posted by swguy View Post
    You have to be logged in to see the button. Are you logged in when you are testing?
    Hi Scott - yes I am logged in, nothing.

    cheers, Mike

  7. #127
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Save For Later Support Thread

    Quote Originally Posted by shags38 View Post
    Hi Scott - yes I am logged in, nothing.

    cheers, Mike
    please ignore previous post - I have the button showing on one site - I installed on 5 sites but obviously only tweaked one correctly - very sorry about this

    Whilst I have your attention what is the file name of that button and where will I find it so I can modify its appearance to suit my template?

    FYI - I did this to the up/down buttons Attachment 13657 Attachment 13658

    cheers, Mike

  8. #128
    Join Date
    Apr 2009
    Posts
    57
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    Hi Scott, thank you for this terrific mod. I was looking at Save for Later Report and was wondering if you can see by customer what they have saved rather than listing by product EG: if i wanted to host a contest in my digital store that allowed for one lucky customer to "Win your Saved items" I want to randomly pick one customer and give them their saved items FREE but seeing the listed items by product would not achieve this. Would you have this option available at some point for the purchased "Save for Later Report"?
    Melanie
    beehavendesignz DOT com

  9. #129
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,684
    Plugin Contributions
    123

    Default Re: Save For Later Support Thread

    @Shags38 - the button on the product info page is called button_Product_SaveForLater.jpg. The define for it is in the same place as the other two - includes/languages/english/extra_definitions/sfl_defines.php.

    @missesbeehaven - this is the first time anyone has ever asked for this.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  10. #130
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Save For Later Support Thread

    Hi Scott,

    @Shags38 - the button on the product info page is called button_Product_SaveForLater.jpg. The define for it is in the same place as the other two - includes/languages/english/extra_definitions/sfl_defines.php.
    thanks for this - what I am looking for is the actual image file, .jpg file so I can create my own button to suit my template appearance then save it as button_Product_SaveForLater.jpg - I cannot find it anywhere

    cheers, Mike

 

 
Page 13 of 21 FirstFirst ... 31112131415 ... LastLast

Similar Threads

  1. v150 Add Customers from Admin 2.0 (1.5.0 and later) [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 145
    Last Post: 24 Oct 2023, 05:00 PM
  2. v151 Autoresponder+ for ZCv1.5.x [Support Thread]
    By countrycharm in forum All Other Contributions/Addons
    Replies: 23
    Last Post: 19 May 2019, 04:39 PM
  3. Autoresponder+ for ZC v1.3.x [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 229
    Last Post: 28 Jun 2017, 12:32 AM
  4. Support Thread for JS Date Picker for options
    By eVelt in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 5 Dec 2013, 05:44 AM
  5. Image Handler / Tabbed Products Pro ... and Save for Later
    By ksoup in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 12 Jan 2011, 12:11 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