Page 180 of 218 FirstFirst ... 80130170178179180181182190 ... LastLast
Results 1,791 to 1,800 of 2177
  1. #1791
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Fast and Easy Checkout

    Quote Originally Posted by yaseent View Post
    I'd like to install this mod, bypassing the one-page checkout option, the additional drop-downs and the COWOA.

    In the docs, so far I've singled out that the following steps can be avoided:


    1, 5, 6, 7 and 9 - unless I am very much mistaken :/

    With regards to Step 1, I intend on styling myself, and since I will be using two-page instead of one-page checkout, I won't require the CSS or jQuery loader - please correct me if I'm wrong.

    My main concern is that I will be still be copying unneeded files into my catalog which I will no longer require. I'm not sure which files these are. And then I suppose there are some files that are global to all the functions, of which one-page, drop-down and COWOA functions and references will need to be purged.

    If anyone here has knowledge or has done this - I'd much appreciate your assistance.
    Soundslike you are trying to write a FORK of this mod, and I'm not sure that the support thread is the right place to have this discussion..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #1792
    Join Date
    Jan 2014
    Location
    United States
    Posts
    28
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    I wanted to share some things I've been working on. I moved the css/js loader code that loads the jscript files to the tpl_main_page.php just before the </body> tag to load the main content of the page sooner before the js files, see code below. note that you have also have to move any script for jquery functions to just below this js loader code for the jquery to work.

    PHP Code:
    <?php
    /**
    * load the jscript loader files, this used to be combined with the css loader files in the html header file, moved here to load some of the page faster
    */
        
    foreach($files['jscript'] as $file)
            if(
    $file['include']) {
          include(
    $file['src']);
        } else if(!
    $RI_CJLoader->get('minify_js') || $file['external']) {
          echo 
    '<script type="text/javascript" src="'.$file['src'].'"></script>'."\n";
        } else {
          echo 
    '<script type="text/javascript" src="min/?f='.$file['src'].'&amp;'.$RI_CJLoader->get('minify_time').'"></script>'."\n";
        }
    ?>
    example jquery:
    Code:
    <!-- Start css3menu BODY section -->
    <script>
    $(document).ready(function(){
      $(".pressed").click(function(){
      $(".DropDownMenu").toggle();
      });
      $(".HideDropDownMenu").click(function(){
      $(".DropDownMenu").hide();
      });  
      $(".onerow-fluid").click(function(){
      $(".DropDownMenu").hide();
      });
      $(".fancy_menu_close").click(function(){
      $(".DropDownMenu").hide();
      });
    });
    </script>
    I also created an autoloader with if and else statements to load and minify my responsive css files depending on the mobile detect code or if display mode links are used (mobile, tablet and desktop display modes), I also use a css drop down menu at the top of the page to select links and display modes.

    If anyone is interested, I added code to have a optional 2nd phone number field during the checkout process, which can also be changed for both shipping and billing addresses, and both phone numbers are displayed under the addresses on the checkout page, in the order confirmation emails, and everywhere else the addresses are shown. Useful for when you sell big expensive items that require delivery scheduling.

    Since I only use the force checkout without account option, I changed the filename of no_account.php to begin_checkout.php, and changed the My Account texts to My Profile, and other similar changes.

    And with the responsive detect code I'm able to make changes to the checkout_stacked file(s) and to have a different file for mobile view which only has one column in the checkout page, and I use the fec split view option for desktop mode and tablet view when in landscape view, and my begin_checkout page has just one column for mobile view (instead of the contact details fields being on the right side).

    So if anyone wants the code let me know.

  3. #1793
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,300
    Plugin Contributions
    1

    Default Re: Fast and Easy Checkout

    I plan to have more billing address countries than shipping address countries but have to avoid having a billing address copied to an invalid shipping address via the ' Same Address for Delivery/Billing ' checkbox,

    I'm thinking that having an alert displayed, when this happens, is the way to go.

    I'm going to attempt this myself but wondered whether anyone has already done something similar?

  4. #1794
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I am getting this error in my logs:

    Call to a member function RecordCount() on a non-object in /home/***/public_html/includes/modules/quick_checkout.php on line 339
    It only happens when a billing country with no states set up in the zones is chosen during guest or regular checkout AND when billing and shipping addresses are different. So for example, if I checkout with the UK as my country, and use it for billing and shipping, checkout works fine. If I checkout with UK as my billing country and a different country as my shipping country, I get the log error above. If I checkout with a country with zones (e.g. US) as my billing country, and UK as my shipping country, checkout works fine.

    So, to sum up, the error only happens when ALL of these conditions are met:

    1. Shipping and billing are different
    2. Billing address is a country with no zones (e.g. UK)

    There are several countries that have no zones by default in zen-cart, so I assume the error is within the FEC mod? Any ideas on how I can fix this?
    Danielle

  5. #1795
    Join Date
    Dec 2007
    Location
    Auckland NZ
    Posts
    24
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Sorry if this is not the place for this... but...

    I have my zen cart working nicely... and the FEC plugin...

    I have an issue with the emails sent when a customer uses the 'Guest Checkout'

    the email sent to the customer doesnt have Template Keywords replaced with the corect text.
    if you sign up, and checkout, it all works as it should.

    Could someone point me in the right direction to solve this problem...?

    Cheers, and thanks in advance

    Name:  aXeilrn.gif
Views: 245
Size:  7.9 KB

  6. #1796
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,555
    Plugin Contributions
    70

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by 00falcon View Post
    Sorry if this is not the place for this... but...

    I have my zen cart working nicely... and the FEC plugin...

    I have an issue with the emails sent when a customer uses the 'Guest Checkout'

    the email sent to the customer doesnt have Template Keywords replaced with the corect text.
    if you sign up, and checkout, it all works as it should.

    Could someone point me in the right direction to solve this problem...?

    Cheers, and thanks in advance

    Name:  aXeilrn.gif
Views: 245
Size:  7.9 KB
    You'll need to check customizations you've made to includes/classes/order.php. Make sure they match the modifications mentioned in the FEC docs. The only edit that is made to that file shouldn't cause the issue you are having. You may want to try redoing the modifications with a default file from the ZC 1.5.1 package (or whichever version you are using). If other mods have made modifications to that file, remember to also add them to your new file and make sure they do not conflict with the changes for FEC.

    Also note: if using FEC, you should not be using the standalone Checkout Without Account mod.

  7. #1797
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,264
    Plugin Contributions
    3

    Default Re: Fast and Easy Checkout for Zen Cart

    FEC and PHP version 5.4 compatibility.

    I have applied various patches to core PHP files as per:
    http://www.zen-cart.com/showthread.p...27#post1224627
    http://www.zen-cart.com/showthread.p...90#post1224790
    and
    http://www.zen-cart.com/showthread.p...HP-5-3-5-4-5-5

    I notice that the most important changes relate to SHIPPING functions, and that PHP version 5.4, $_SESSION['shipping'] should always be treated as an array.

    Within FEC, I am noticing things like:
    PHP Code:
    $_SESSION['shipping'] = ''
    .. which appears to need patching to:
    PHP Code:
    unset($_SESSION['shipping']); 
    and...

    PHP Code:
    if ($_SESSION['shipping']) { 
    should perhaps become
    PHP Code:
    if (isset($_SESSION['shipping'])) { 

    and...


    PHP Code:
    if ($_SESSION['shipping'] == 
    should perhaps become
    PHP Code:
    if ($_SESSION['shipping']['id'] == 
    ----------------------------------------------------

    Will it be necessary to make these patches (IF APPLICABLE), to files within the FEC module? If so, what files are involved, and what code lines are affected?
    20 years a Zencart User

  8. #1798
    Join Date
    Apr 2014
    Location
    Bronx, New York, United States
    Posts
    83
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    after install Fec ...
    i got.. index.php?main_page=checkout&fecaction=null .(my checkout url)

    how can i get index.php?main_page=checkout.... ?

    Thanks

  9. #1799
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,849
    Plugin Contributions
    11

    Default Re: Fast and Easy Checkout for Zen Cart

    hi,
    i have recently updated this module to the latest version. and i have most of it working....

    i have gotten fast and easy part of working to my satisfaction; however i am having problems with the checkout as a guest. i get to the first screen which has the bill-to/ship-to information; when i click continue it will successfully validate everything on the screen and display error messages as necessary. however, if no errors are found, when posting the form, i stay on the page (main_page=no_account). it validates the form, and does not move forward to the next step.

    there is nothing in my zen log or apache log to indicate any problem. i have a feeling that something is loading at the wrong time which is preventing the script from making it to the next page.

    does anyone have any ideas where i could look to address this problem?

    this problem existed prior to upgrading to the latest version as well; just an FYI.

    thanks in advance for any help and suggestions.

  10. #1800
    Join Date
    Dec 2010
    Location
    UK
    Posts
    1,771
    Plugin Contributions
    3

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by jennydutch View Post
    after install Fec ...
    i got.. index.php?main_page=checkout&fecaction=null .(my checkout url)

    how can i get index.php?main_page=checkout.... ?

    Thanks
    You won't unless you disable the 'no account' option of FECin your admin area. I believe the URL is basically stating that the page being viewed is the FEC checkout page created by a customer opting to create an account as opposed to not creating (or vise versa, I'm not sure without actually logging on to my module testing site).

 

 

Similar Threads

  1. Replies: 4
    Last Post: 25 Jan 2012, 07:37 PM
  2. Fast and Easy Checkout - Checkout Without Account not showing
    By Lee-oh in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 3 Feb 2010, 05:09 PM
  3. Go To Checkout Error - with Fast and Easy Checkout installed
    By RFree190 in forum General Questions
    Replies: 3
    Last Post: 10 Mar 2009, 07:08 AM
  4. checkout page not redirect (Fast and Easy Checkout module)
    By wowemall in forum Addon Templates
    Replies: 0
    Last Post: 27 Sep 2008, 02:36 PM
  5. Fast and Easy Checkout
    By cmes in forum General Questions
    Replies: 5
    Last Post: 15 Feb 2008, 04:07 PM

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