Results 1 to 10 of 226

Hybrid View

  1. #1
    Join Date
    Oct 2009
    Posts
    440
    Plugin Contributions
    0

    Default Re: Save For Later Support Thread

    Thanks again swguy for the code to fix this warning. I've applied it, tested and no errors!

    Thanks again for your help with this.

  2. #2
    Join Date
    Apr 2009
    Posts
    492
    Plugin Contributions
    2

    Default Re: Save For Later Support Thread

    If a customer saves a product for later that you then remove from the database a Warning log is created. This can be stopped by changing line 174 in includes/functions/extra_functions/sfl_functions.php
    Code:
          if ($products = $db->Execute($products_query)) {
    to
    Code:
          $products = $db->Execute($products_query);
          if (!$products->EOF) {
    or if you want to tidy the table
    Code:
          $products = $db->Execute($products_query);
          if ($products->EOF) {
              remove(products_id);
          } else {
    Mark Brittain
    http:\\innerlightcrystals.co.uk\sales\

  3. #3
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,536
    Plugin Contributions
    127

    Default Re: Save For Later Support Thread

    thanks for posting! Added for the next update.
    That Software Guy. My Store: Zen Cart Support
    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.

 

 

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: 151
    Last Post: 17 Feb 2026, 01:41 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

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