Page 14 of 218 FirstFirst ... 412131415162464114 ... LastLast
Results 131 to 140 of 2177
  1. #131
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: selected shipping

    Quote Originally Posted by lankeeyankee View Post
    Hmmm, I seem to recall (but I could very well be remembering wrong) that it's always been like that since I installed this mod, I kept forgetting to seek a remedy. Which file and lines of code should I look at to see about the auto refresh as soon as the page loads? I'll check it to see if it's been modified by another mod.

    Thanks!

    Matt
    I just installed the latest version and it doesn't auto refresh to show the shipping either. Is anyone else having this happen or is it just me?

    Matt

  2. #132
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,550
    Plugin Contributions
    70

    Default Re: Fast and Easy Checkout for Zen Cart

    Matt, do you have it running on a live site that I can look at?

    If not, can you paste the portion of the URL beginning with "/index.php?"
    when you first visit "main_page=checkout"

    It should be "index.php?main_page=checkout&action=null"

    The script automatically redirects to that page if action is not set.

  3. #133
    Join Date
    Nov 2007
    Location
    south carolina
    Posts
    43
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    wish I could help with this, but I only use one shipping method, so there's no updating needed.

  4. #134
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by numinix View Post
    Matt, do you have it running on a live site that I can look at?

    If not, can you paste the portion of the URL beginning with "/index.php?"
    when you first visit "main_page=checkout"

    It should be "index.php?main_page=checkout&action=null"

    The script automatically redirects to that page if action is not set.
    drumfactorydirect dot com

    add something to the cart and checkout, it doesn't matter if it's with an account, creating an account or COWA. I switched the tpl_checkout_default.php back to what I was using since I haven't had a chance to go and change the new template file to match the current layout. But the header_php.php file in pages/checkout is from the latest version. Let me know if there are any other files that need updating.

    Thanks!

    Matt

  5. #135
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Hi Jeff,

    How can we add product image on your one-page checkout in the shopping cart table? Thanks in advance.
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  6. #136
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    Managed to add product images into the shopping cart table. But they are too big to my liking. How can I resize it? The code I am using is as follows:

    <?php
    $products = $db->Execute("SELECT products_image
    FROM " . TABLE_PRODUCTS . "
    WHERE products_id ='" . $order->products[$i]['id'] . "'");

    echo '' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_HEIGHT, SMALL_IMAGE_WIDTH) . '</a>&nbsp;';
    ?>
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  7. #137
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: Fast and Easy Checkout for Zen Cart

    Quote Originally Posted by dealbyethan.com View Post
    Managed to add product images into the shopping cart table. But they are too big to my liking. How can I resize it? The code I am using is as follows:

    <?php
    $products = $db->Execute("SELECT products_image
    FROM " . TABLE_PRODUCTS . "
    WHERE products_id ='" . $order->products[$i]['id'] . "'");

    echo '' . zen_image(DIR_WS_CATALOG . DIR_WS_IMAGES . $products->fields['products_image'] , $order->products[$i]['name'], SMALL_IMAGE_HEIGHT, SMALL_IMAGE_WIDTH) . '</a>&nbsp;';
    ?>
    Try SMALL_IMAGE_HEIGHT/2, SMALL_IMAGE_WIDTH/2

    If that's still too big you can try /3 or /4.

    Hope that helps!

    Matt

  8. #138
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag Re: Fast and Easy Checkout for Zen Cart

    Try SMALL_IMAGE_HEIGHT/2, SMALL_IMAGE_WIDTH/2

    If that's still too big you can try /3 or /4.

    Hope that helps!

    Matt
    Thanks for your suggestion. I tried that but it did not resize. Any other idea?
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

  9. #139
    Join Date
    Nov 2007
    Location
    south carolina
    Posts
    43
    Plugin Contributions
    0

    Default Re: Fast and Easy Checkout for Zen Cart

    how about adding another variable to your CSS? that you pass in the additional PHP?


    PHP Code:
    img.cartProductDisplayXXX  {
      
    width2em;
      
    height2em;

    I have no idea if that would work, but it's an idea?

  10. #140
    Join Date
    Dec 2005
    Location
    Australia
    Posts
    772
    Plugin Contributions
    0

    red flag Re: Fast and Easy Checkout for Zen Cart

    Thanks for your suggestion. I tried putting your code in stylesheet but it didn't work. By the way, what's with the XXX? I still can't get it to work as I have no idea what controls the size of the images and which files they are calling from.

    Code:
    img.cartProductDisplayXXX  {
      width: 2em;
      height: 2em;
    }
    Using zencart v.1.3.9e
    Website: http://www.dealbyethan.com
    Email: admin AT dealbyethan DOT com

 

 

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