Page 32 of 40 FirstFirst ... 223031323334 ... LastLast
Results 311 to 320 of 399
  1. #311
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: COWOA - Updated and Combined

    that's your language file, you would need to post your template file from /includes/templates/CUSTOM/templates/tpl_checkout_shipping_default.php

  2. #312
    Join Date
    Oct 2011
    Location
    Kent, UK
    Posts
    50
    Plugin Contributions
    0

    Default Re: COWOA - Updated and Combined



    Code:
    <?php
    /**
     * Page Template
     *
     * Loaded automatically by index.php?main_page=checkout_shipping.<br />
     * Displays allowed shipping modules for selection by customer.
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 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: J_Schilz for Integrated COWOA - 14 April 2007
     */
    ?>
    <div class="centerColumn" id="checkoutShipping">
    
    <?php echo zen_draw_form('checkout_address', zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL')) . zen_draw_hidden_field('action', 'process'); ?>
    
    
    <?php if ($messageStack->size('checkout_shipping') > 0) echo $messageStack->output('checkout_shipping'); ?>
    
    <!-- bof Order Steps (tableless) -->
    <?php if($COWOA) {?>
        <div id="order_steps">
                <div class="order_steps_text">
    			<span class="order_steps_text1_COWOA"><?php echo TEXT_ORDER_STEPS_BILLING; ?></span><span id="active_step_text_COWOA"><?php echo zen_image($template->get_template_dir(ORDER_STEPS_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . ORDER_STEPS_IMAGE, ORDER_STEPS_IMAGE_ALT); ?><br /><?php echo TEXT_ORDER_STEPS_1; ?></span><span class="order_steps_text2_COWOA"><?php echo TEXT_ORDER_STEPS_2; ?></span><span class="order_steps_text3_COWOA"><?php echo TEXT_ORDER_STEPS_3; ?></span><span class="order_steps_text4_COWOA"><?php echo TEXT_ORDER_STEPS_4; ?></span>
                </div>
                <div class="order_steps_line_2">
    		  <span class="progressbar_active_COWOA">&nbsp;</span><span class="progressbar_active_COWOA">&nbsp;</span><span class="progressbar_inactive_COWOA">&nbsp;</span><span class="progressbar_inactive_COWOA">&nbsp;</span><span class="progressbar_inactive_COWOA">&nbsp;</span>
                </div>
        </div>
    <?php } else {?>
        <div id="order_steps">
                <div class="order_steps_text">
    			<span id="active_step_text"><?php echo zen_image($template->get_template_dir(ORDER_STEPS_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . ORDER_STEPS_IMAGE, ORDER_STEPS_IMAGE_ALT); ?><br /><?php echo TEXT_ORDER_STEPS_1; ?></span><span class="order_steps_text2"><?php echo TEXT_ORDER_STEPS_2; ?></span><span class="order_steps_text3"><?php echo TEXT_ORDER_STEPS_3; ?></span><span class="order_steps_text4"><?php echo TEXT_ORDER_STEPS_4; ?></span>
                </div>
                <div class="order_steps_line_2">
                    <span class="progressbar_active">&nbsp;</span><span class="progressbar_inactive">&nbsp;</span><span class="progressbar_inactive">&nbsp;</span><span class="progressbar_inactive">&nbsp;</span>
                </div>
        </div>
    <?php } ?>
    <!-- eof Order Steps (tableless) -->
    
    <h2 id="checkoutShippingHeadingAddress"><?php echo TITLE_SHIPPING_ADDRESS; ?></h2>
    
    <div id="checkoutShipto" class="floatingBox back">
    <?php if ($displayAddressEdit) { ?>
    <div class="buttonRow forward"><?php echo '<a href="' . $editShippingButtonLink . '">' . zen_image_button(BUTTON_IMAGE_CHANGE_ADDRESS, BUTTON_CHANGE_ADDRESS_ALT) . '</a>'; ?></div>
    <?php } ?>
    <address class=""><?php echo zen_address_label($_SESSION['customer_id'], $_SESSION['sendto'], true, ' ', '<br />'); ?></address>
    </div>
    <div class="floatingBox important forward"><?php echo TEXT_CHOOSE_SHIPPING_DESTINATION; ?></div>
    <br class="clearBoth" />
    
    <?php
      if (zen_count_shipping_modules() > 0) {
    ?>
    
    <h2 id="checkoutShippingHeadingMethod"><?php echo TABLE_HEADING_SHIPPING_METHOD; ?></h2>
    
    <?php
        if (sizeof($quotes) > 1 && sizeof($quotes[0]) > 1) {
    ?>
    
    <div id="checkoutShippingContentChoose" class="important"><?php echo TEXT_CHOOSE_SHIPPING_METHOD; ?></div>
    
    <?php
        } elseif ($free_shipping == false) {
    ?>
    <div id="checkoutShippingContentChoose" class="important"><?php echo TEXT_ENTER_SHIPPING_INFORMATION; ?></div>
    
    <?php
        }
    ?>
    <?php
        if ($free_shipping == true) {
    ?>
    <div id="freeShip" class="important" ><?php echo FREE_SHIPPING_TITLE; ?>&nbsp;<?php echo $quotes[$i]['icon']; ?></div>
    <div id="defaultSelected"><?php echo sprintf(FREE_SHIPPING_DESCRIPTION, $currencies->format(MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER)) . zen_draw_hidden_field('shipping', 'free_free'); ?></div>
    
    <?php
        } else {
          $radio_buttons = 0;
          for ($i=0, $n=sizeof($quotes); $i<$n; $i++) {
    ?>
    <fieldset>
    <legend><?php echo $quotes[$i]['module']; ?>&nbsp;<?php if (isset($quotes[$i]['icon']) && zen_not_null($quotes[$i]['icon'])) { echo $quotes[$i]['icon']; } ?></legend>
    
    <?php
            if (isset($quotes[$i]['error'])) {
    ?>
          <div><?php echo $quotes[$i]['error']; ?></div>
    <?php
            } else {
              for ($j=0, $n2=sizeof($quotes[$i]['methods']); $j<$n2; $j++) {
    // set the radio button to be checked if it is the method chosen
                $checked = (($quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'] == $_SESSION['shipping']['id']) ? true : false);
    
                if ( ($checked == true) || ($n == 1 && $n2 == 1) ) {
                  //echo '      <div id="defaultSelected" class="moduleRowSelected">' . "\n";
                //} else {
                  //echo '      <div class="moduleRow">' . "\n";
                }
    ?>
    <?php
                if ( ($n > 1) || ($n2 > 1) ) {
    ?>
    <div class="important forward"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][$j]['cost'], (isset($quotes[$i]['tax']) ? $quotes[$i]['tax'] : 0))); ?></div>
    <?php
                } else {
    ?>
    <div class="important forward"><?php echo $currencies->format(zen_add_tax($quotes[$i]['methods'][$j]['cost'], $quotes[$i]['tax'])) . zen_draw_hidden_field('shipping', $quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id']); ?></div>
    <?php
                }
    ?>
    
    <?php echo zen_draw_radio_field('shipping', $quotes[$i]['id'] . '_' . $quotes[$i]['methods'][$j]['id'], $checked, 'id="ship-'.$quotes[$i]['id'] . '-' . $quotes[$i]['methods'][$j]['id'].'"'); ?>
    <label for="ship-<?php echo $quotes[$i]['id'] . '-' . $quotes[$i]['methods'][$j]['id']; ?>" class="checkboxLabel" ><?php echo $quotes[$i]['methods'][$j]['title']; ?></label>
    <!--</div>-->
    <br class="clearBoth" />
    <?php
                $radio_buttons++;
              }
            }
    ?>
    
    </fieldset>
    <?php
          }
        }
    ?>
    
    <?php
      } else {
    ?>
    <h2 id="checkoutShippingHeadingMethod"><?php echo TITLE_NO_SHIPPING_AVAILABLE; ?></h2>
    <div id="checkoutShippingContentChoose" class="important"><?php echo TEXT_NO_SHIPPING_AVAILABLE; ?></div>
    <?php
      }
    ?>
    <fieldset class="shipping" id="comments">
    <legend><?php echo TABLE_HEADING_COMMENTS; ?></legend>
    <?php echo zen_draw_textarea_field('comments', '45', '3'); ?>
    </fieldset>
    
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONTINUE_CHECKOUT, BUTTON_CONTINUE_ALT); ?></div>
    <div class="buttonRow back"><?php echo '<strong>' . TITLE_CONTINUE_CHECKOUT_PROCEDURE . '</strong><br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>
    
    </form>
    </div>

  3. #313
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: COWOA - Updated and Combined

    that looks fine, what other modules do you have installed?

  4. #314
    Join Date
    Oct 2011
    Location
    Kent, UK
    Posts
    50
    Plugin Contributions
    0

    Default Re: COWOA - Updated and Combined

    well I'm not entirely sure what's in the standard install as I didn't install it, so all I can do is list everything from "Configuration" and "Tools":

    Configuration

    My Store
    Minimum Values
    Maximum Values
    Images
    Customer Details
    Shipping/Packaging
    Product Listing
    Stock
    Logging
    E-Mail Options
    Attribute Settings
    GZip Compression
    Sessions
    GV Coupons
    Regulations
    Credit Cards
    Product Info
    Layout Settings
    Website Maintenance
    New Listing
    Featured Listing
    All Listing
    Index Listing
    Define Page Status
    EZ-Pages Settings
    Easy Populate
    Google Base Feeder Configuration
    eBay Exporter Configuration
    Amazon Inventory Loader Configuration
    Amazon Exporter Configuration
    Google Analytics Configuration
    Simple SEO URL
    PDF Order Center
    Zen Lightbox
    Editable Centerboxes
    COWOA

    Tools

    Template Selection
    Layout Boxes Controller
    Banner Manager
    Send Email
    Newsletter and Product Notifications Manager
    Server/Version Info
    Who's Online
    Admin Settings
    Email Welcome
    Store Manager
    Developers Tool Kit
    EZ-Pages
    Define Pages Editor
    Install SQL Patches
    eBay Exporter
    Export Shipping/Order Information
    Amazon Exporter
    Multisite Tools
    Easy Populate
    Google Base Feeder
    Module Manager
    Orders Export
    Amazon Inventory Loader
    Frontpage Carousal
    CSV Importer
    Database Backup - MySQL
    Image Handler2


    We do have PayPal Express Checkout installed, I've tried disabling this but no luck...

  5. #315
    Join Date
    Oct 2011
    Location
    Kent, UK
    Posts
    50
    Plugin Contributions
    0

    Default Re: COWOA - Updated and Combined

    Just to say I've managed a workaround to the above problem by uninstalling COWOA and installing Fast and Easy Checkout (which includes COWOA) - so if anyone else is having similar problems to me this might be the solution.

  6. #316
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    354
    Plugin Contributions
    0

    Default Re: COWOA - Updated and Combined

    Ok. COWOA seems to be working at this point. I processed a fake order and tried to click on the link in email to check status and it goes to the website but to Page Not Found.

    Anyone else had this issue and found a solution so customer can click on the link to see what the status is to the order?
    Thanks
    Last edited by perkiekat; 10 Jan 2012 at 03:34 AM.
    Zen Cart user all the way for online stores!

  7. #317
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    354
    Plugin Contributions
    0

    Default Re: COWOA - Updated and Combined

    Quote Originally Posted by igi2011 View Post
    Just to say I've managed a workaround to the above problem by uninstalling COWOA and installing Fast and Easy Checkout (which includes COWOA) - so if anyone else is having similar problems to me this might be the solution.
    Not doubting you here, but the addon states this:

    Combines the payment and shipping checkout pages into one page for a shortened checkout process.

    No mention of COWOA in there or did I miss something? Will this addon allow a customer to ck out without an account just like the COWOA plug?
    Zen Cart user all the way for online stores!

  8. #318
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: COWOA - Updated and Combined

    Quote Originally Posted by perkiekat View Post
    Not doubting you here, but the addon states this:

    Combines the payment and shipping checkout pages into one page for a shortened checkout process.

    No mention of COWOA in there or did I miss something? Will this addon allow a customer to ck out without an account just like the COWOA plug?
    Yep.. that has ALWAYS been a feature of FEC..
    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.

  9. #319
    Join Date
    Aug 2009
    Location
    Carmi, IL
    Posts
    354
    Plugin Contributions
    0

    Default Re: COWOA - Updated and Combined

    Quote Originally Posted by DivaVocals View Post
    Yep.. that has ALWAYS been a feature of FEC..
    Thank you! I know what I am getting ready to do...uninstall COWOA and install FEC. I appreciate your quick response. Have a great day.
    Zen Cart user all the way for online stores!

  10. #320
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: COWOA - Updated and Combined

    Quote Originally Posted by perkiekat View Post
    Thank you! I know what I am getting ready to do...uninstall COWOA and install FEC. I appreciate your quick response. Have a great day.
    NOT SO FAST.. FEC has a few issues of it's own (IMHO) and it doesn't always play nice with other mods.. Proceed with caution...
    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.

 

 
Page 32 of 40 FirstFirst ... 223031323334 ... LastLast

Similar Threads

  1. v150 COWOA (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 853
    Last Post: 31 Jan 2022, 12:44 PM
  2. Installed FEC before COWOA, now COWOA config menu doesn't appear
    By i-make-robots in forum Addon Payment Modules
    Replies: 8
    Last Post: 12 Jan 2014, 01:34 PM
  3. v151 Which COWOA Plugin? Fast and Easy or original COWOA ?
    By damon in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 8 Nov 2012, 03:44 AM
  4. Chosen Shipping Option not being Saved after adding COWOA module?
    By donrado in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 25 Oct 2009, 10:42 PM
  5. SQL update for Tax Exempt Status module
    By TheMusician in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 9 Jul 2007, 09:09 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