Page 188 of 218 FirstFirst ... 88138178186187188189190198 ... LastLast
Results 1,871 to 1,880 of 2177
  1. #1871
    Join Date
    Aug 2012
    Posts
    40
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    numinix released a new version a few days ago
    https://www.numinix.com/downloads/ze...-easy-checkout

    hope this fixes the problem on 1.5.3

  2. #1872
    Join Date
    Aug 2012
    Posts
    40
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    The admin > config> fec drop down menu still does not show on a 1.5.3 clean install.

    This is using FEC Version: 1.15.2 from Numinix's site.
    Last edited by wtfbbq; 14 Aug 2014 at 05:49 AM.

  3. #1873
    Join Date
    Apr 2010
    Location
    Albuquerque, NM
    Posts
    198
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    I just upgraded to FEC 1.15.2 as well, and it's still not showing up in admin on v.1.5.3 fresh install. I noticed that this new version doesn't include the .gitignore and .gitattributes, not really sure what these files do or they make a difference. I still have them on my server from the last FEC, should I delete them?

  4. #1874
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    The git files were probably left by accident. I just install FEC v1.15.3 on a clean zencart v1.5.3, without issue.

  5. #1875
    Join Date
    Feb 2014
    Location
    The Netherlands
    Posts
    58
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout

    Hi Guys,

    I hope someone can help me with the following problem.

    I've recently installed Fast and Easy Checkout and everything seems to have gone well, except for one thing. It looks like I'm having a Jquery conflict. Before installing Fast and Easy Checkout, I already had jscript_jquery-1.7.1.min.js installed in the includes\templates\custom_theme\jscript folder for my Lightbox. However, Fast and Easy Checkout also uses Jquery, except it loads the respective files, including jquery-1.10.2.min.js, from the includes\templates\custom_theme\jscript folder. This causes the browser to attempt to load both, preventing Jquery from working properly. I've installed everything on localhost.

    I've been searching the internet and the Zen Cart forum for the last two days, but I can't find any solutions. Is there any way to efficiently resolve this conflict? I've included my html_header.php file. I have CSS/JS Loader installed by the way.

    Many thanks!

    Code:
    <?php
    /**
     * Common Template
     *
     * outputs the html header. i,e, everything that comes before the \</head\> tag <br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2010 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: html_header.php 6 2012-05-07 21:43:01Z numinix $
     */
    /**
     * load the module for generating page meta-tags
     */
    require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));
    /**
     * output main page HEAD tag and related headers/meta-tags, etc
     */
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?> xmlns:fb="http://ogp.me/ns/fb#">
    <head>
    <title><?php echo META_TAG_TITLE; ?></title>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
    <meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />
    <meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="author" content="The Zen Cart&reg; Team and others" />
    <meta name="generator" content="shopping cart program by Zen Cart&reg;, http://www.zen-cart.com eCommerce" />
    <link href='//fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>
    <?php if (defined('ROBOTS_PAGES_TO_SKIP') && in_array($current_page_base,explode(",",constant('ROBOTS_PAGES_TO_SKIP'))) || $current_page_base=='down_for_maintenance' || $robotsNoIndex === true) { ?>
    <meta name="robots" content="noindex, nofollow" />
    <?php } ?>
    <?php if (defined('FAVICON')) { ?>
    <link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
    <link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
    <?php } //endif FAVICON ?>
    
    <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
    <?php if (isset($canonicalLink) && $canonicalLink != '') { ?>
    <link rel="canonical" href="<?php echo $canonicalLink; ?>" />
    <?php } ?>
    
    <?php
    /**
    * load the loader files
    */
    
    if($RI_CJLoader->get('status') && (!isset($Ajax) || !$Ajax->status())){
    	$RI_CJLoader->autoloadLoaders();
    	$RI_CJLoader->loadCssJsFiles();
    	$files = $RI_CJLoader->header();	
    	
    	foreach($files['css'] as $file)
    		if($file['include']) {
          include($file['src']);
        } else if (!$RI_CJLoader->get('minify_css') || $file['external']) {
          echo '<link rel="stylesheet" type="text/css" href="'.$file['src'].'" />'."\n";
        } else {
          echo '<link rel="stylesheet" type="text/css" href="min/?f='.$file['src'].'&amp;'.$RI_CJLoader->get('minify_time').'" />'."\n";
        }
    		
    	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";
        }
    }
    //DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
    ?>
    </head>
    <?php // NOTE: Blank line following is intended: ?>

  6. #1876
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,521
    Plugin Contributions
    88

    bug Re: Fast and Easy Checkout

    I've got a site with FEC 1.14.3 (yes, I know I should update) running on Zen Cart v1.5.1. FWIW, I've downloaded 1.14.3 and used Beyond Compare to see the differences between that version and 1.15.3 and don't see any changes that would be pertinent to the following issue.

    The site has "Fast and Easy Checkout", "One Page Checkout", "Easy Sign-up and Login", "Checkout Without Account" and "Automatic Logoff for No Account" all set to true. I've got a copy of that store installed locally. If a new customer chooses to checkout as a guest, they receive an email that starts with:
    Code:
    Order Confirmation from My Test Store
    
    Test Customer
    
    Thanks for shopping with us today!
    The following are the details of your order.
    ------------------------------------------------------
    Order Number: 468
    Date Ordered: Monday 29 September, 2014
    Detailed Invoice: http://localhost/myteststore/index.php?main_page=account_history_info&order_id=468
    This is (obviously) incorrect and has caused much customer confusion at the store. Since they've checked out without an account, there is no login so it's not possible for them to access an account_history_info page. The email should be pointing the customer to the orders_status page instead.

    What's also interesting (and incorrect) is that while the customer's account is marked with COWOA_account field set to 1, the order's COWOA_order field is set to 0; this is most likely a side-effect of the issue.

    Has anyone else run into this?

  7. #1877
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    Do you have a older copy of COWOA installed?

  8. #1878
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,521
    Plugin Contributions
    88

    Default Re: Fast and Easy Checkout

    If you'd read my post, I've got v1.14.3 installed and have compared the changes from that version to 1.15.3 (the most recent); there are no changes made there that would lead to a solution to the issue I posted.

  9. #1879
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Fast and Easy Checkout

    Yes, I understand that. But I have seen this issue when installing COWOA and then migrated to Fast & Easy Checkout without removing/replacing all the items. Wasn't sure if this was the issue.

  10. #1880
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,521
    Plugin Contributions
    88

    Default Re: Fast and Easy Checkout

    This was a fresh install of 1.14.3.

 

 

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