Page 31 of 55 FirstFirst ... 21293031323341 ... LastLast
Results 301 to 310 of 543
  1. #301
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

    Default Re: Order Delivery Date Support Thread

    Have you tested this in firefox or safari? I need to know if it's a browser based problem.
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  2. #302
    Join Date
    Dec 2012
    Location
    Lima, Peru
    Posts
    7
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by delia View Post
    Have you tested this in firefox or safari? I need to know if it's a browser based problem.
    Yes, I've proved this option in Firefox and the problem still exists.

  3. #303
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

    Default Re: Order Delivery Date Support Thread

    I've not heard any other complaints and this was actually done for a specific customer who has not heard any complaints from his customers. You want to pm me your site url and set up a test product that I can work with?
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  4. #304
    Join Date
    Dec 2010
    Posts
    7
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Hello,

    I have a similar problem.
    I had installed version 2.2 of Order Delivery Date plugin that worked well with Firefox and previous version of IE (<9). I've upgraded to version 2.4 and now the calendar does not appear neither IE9 nor Firefox.
    Also I've tested with mootools 1.4.5 too but the plugin stop working.

  5. #305
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

    Default Re: Order Delivery Date Support Thread

    both of you - what version of zencart are you using? I'll do a new install on a test server tomorrow with that specific download.
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  6. #306
    Join Date
    Dec 2012
    Location
    Lima, Peru
    Posts
    7
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by delia View Post
    both of you - what version of zencart are you using? I'll do a new install on a test server tomorrow with that specific download.
    Hi! I'm using Zen Cart v 1.5.1 running on MySQL 5.0 and PHP 5.3

  7. #307
    Join Date
    Dec 2012
    Location
    Lima, Peru
    Posts
    7
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Quote Originally Posted by delia View Post
    both of you - what version of zencart are you using? I'll do a new install on a test server tomorrow with that specific download.
    Dear Delia:

    Do you have any solution to our problem?
    Please keep us informed.
    Thanks.

  8. #308
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,360
    Plugin Contributions
    23

    Default Re: Order Delivery Date Support Thread

    I have tested this in the latest version of firefox, ie9, ie8, the latest version of Chrome with no problems.

    The only thing I can think of is that you may already some javascript or jquery installed in your cart that conflicts or there was a mistake in integrating or installing this mod.

    Stoyka, since you had it installed before, would you give me the url of your website? You can pm me if you want. I want to look at what else is installed.

    Y'all have to understand that I am no javascript expert by any imagination so may not be able to figure this out unless I can duplicate the problem on a correct installation.
    The full-time Zen Cart Guru. WizTech4ZC.com
    New template for 2.0 viewable here: 2.0 Demo

  9. #309
    Join Date
    Dec 2012
    Location
    Lima, Peru
    Posts
    7
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Hi, I re-installed Order Delivery Date v.2.4 but with "jscript_a-mootools.js" v.1.11, that comes with Order Delivery Date v.2.3.2, and it works.

  10. #310
    Join Date
    Jan 2013
    Posts
    1
    Plugin Contributions
    0

    Default Re: Order Delivery Date Support Thread

    Adding this plug-in has been a lifesaver and has been a great tool to fiddle around with in regards to learning about the finer nuances of zen-cart customization. Thanks!

    We've been having one particularly bizarre issue tonight that has us at a loss, so hopefully someone is able to shed some light on this. What we are trying to do is to add the $order->info['order_delivery_date'] value into the tpl_account_history_info_default.php page so that the customer can see the delivery dates along with an order placed. The delivery date shows up and works properly on tp_checkout_confirmation_default.php page, so there doesn't seem to be any obvious reason why it wouldn't work on the acct history info page.

    We copied this from the tpl_checkout_confirmation_default.php:
    Code:
    <h3><?php echo TABLE_HEADING_DELIVERY_DATE; ?></h3>
    <h4><?php echo zen_date_long($order->info['order_delivery_date']); ?></h4><br />
    And put it into the tpl_account_history_info_default.php in this section:

    Code:
    <div id="myAccountShipInfo" class="floatingBox back">
    <?php
      if ($order->delivery != false) {
    ?>
    <h3><?php echo HEADING_DELIVERY_ADDRESS; ?></h3>
    <address><?php echo zen_address_format($order->delivery['format_id'], $order->delivery, 1, ' ', '<br />'); ?></address>
    <?php
      }
    ?>
    <?php
        if (zen_not_null($order->info['shipping_method'])) {
    ?>
    <h4><?php echo HEADING_SHIPPING_METHOD; ?></h4>
    <div><?php echo $order->info['shipping_method']; ?></div><br />
    <h4><?php echo TABLE_HEADING_DELIVERY_DATE; ?></h4>
    <div><?php echo $order->info['order_delivery_date']; ?></div>
    <?php } else { // temporary just remove these 4 lines ?>
    <div>WARNING: Missing Shipping Information</div>
    <?php
        }
    ?>
    </div>
    We get the header as expected (we had to add that to the definition file first), but the date shows up as blank space. We've tried it with and without the zen_date_long function, random h1-4 tags, div, divs with classes, or no tags, and even putting it elsewhere in the file and it is always blank. It shouldn't be a problem with the order.php class since the delivery date works elsewhere. I've verified that every order in the system has a value in the order_delivery_date field. What else could we be missing?

 

 
Page 31 of 55 FirstFirst ... 21293031323341 ... LastLast

Similar Threads

  1. order delivery date addon - date not showing in checkout
    By jagall in forum Addon Shipping Modules
    Replies: 4
    Last Post: 19 Oct 2017, 09:09 PM
  2. JK Order Exporter - Support Thread
    By eVelt in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 26 Sep 2015, 07:06 AM
  3. v151 Order Delivery date on Product Info Page
    By nicksab in forum General Questions
    Replies: 0
    Last Post: 30 Dec 2013, 03:23 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. Order Delivery Date Mod
    By fagriffin in forum Addon Shipping Modules
    Replies: 1
    Last Post: 11 Oct 2008, 04:50 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