Page 23 of 394 FirstFirst ... 1321222324253373123 ... LastLast
Results 221 to 230 of 3932
  1. #221
    Join Date
    May 2005
    Location
    Tampa, FL
    Posts
    203
    Plugin Contributions
    1

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by blackinches View Post
    i don't get the google checkout button for checkout.
    Did you rename the YOUR_TEMPLATE folder
    The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)

  2. #222
    Join Date
    May 2005
    Location
    Tampa, FL
    Posts
    203
    Plugin Contributions
    1

    Default Re: Google Checkout module for Zen Cart released

    If a customer tries to select Google Checkout as payment from the Step 2 - Payment Page, it will act like they were paying by check.

    To fix this, you have to edit templates\tpl_checkout_confirmation_default.php page:
    At the bottom of the page, replace the code
    Code:
    <?php
      echo zen_draw_form('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation" onsubmit="submitonce();"');
    
      if (is_array($payment_modules->modules)) {
        echo $payment_modules->process_button();
      }
    ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>
    
    </div>
    with the following
    Code:
    <!----------- GOOGLE CHECKOUT --------------->
    <?php
      if ($GLOBALS[$class]->title == 'GoogleCheckout') {
    ?>	  
    	  	<br class="clearBoth" />
    		<div class="buttonRow forward">
    		<?php  include(DIR_WS_MODULES . 'show_google_components.php');  ?>
    		</div>
    <?php
      } 
      else {
    ?>
    <?php
      echo zen_draw_form('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation" onsubmit="submitonce();"');
      if (is_array($payment_modules->modules)) {
        echo $payment_modules->process_button();
      }
    ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>
    <?php }
    ?>
    <!----------- GOOGLE CHECKOUT --------------->
    </div>

    Attach is the modify file.
    This file should be copy to
    /includes/templates/YOUR_TEMPLATE/templates folder
    Attached Files Attached Files
    The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)

  3. #223
    Join Date
    Nov 2006
    Posts
    94
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Colo......

    Can you tell me if the 1.0.4 should now work to pay for gift certificates? Or if not, will it ever be able to deal with them?

    I setup GCerts a few days ago, was pulling my hair out trying to figure out what I had done wrong, flipped over to pay by paypal, and all was fine.

    I assume this is something to do with GC not forcing a login prior to checkout, dunno.

    I did test by logging into ZC first, then buy a GCert pay by GC, left with no GC in que, no email back to cust with GC number, etc....

    My suspicion is this may not be an "easy" one with the way GC wants to work?

    Thoughts?

    Second question......if the above is out, then is it possible to setup products to only allow specific method of payment? ie; if cust. buys a GCert, they are only allowed to checkout with other than GC?

    Dave.......

  4. #224
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by colosports View Post
    If a customer tries to select Google Checkout as payment from the Step 2 - Payment Page, it will act like they were paying by check.

    To fix this, you have to edit templates\tpl_checkout_confirmation_default.php page:
    At the bottom of the page, replace the code
    Code:
    <?php
      echo zen_draw_form('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation" onsubmit="submitonce();"');
    
      if (is_array($payment_modules->modules)) {
        echo $payment_modules->process_button();
      }
    ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>
    
    </div>
    with the following
    Code:
    <!----------- GOOGLE CHECKOUT --------------->
    <?php
      if ($GLOBALS[$class]->title == 'GoogleCheckout') {
    ?>	  
    	  	<br class="clearBoth" />
    		<div class="buttonRow forward">
    		<?php  include(DIR_WS_MODULES . 'show_google_components.php');  ?>
    		</div>
    <?php
      } 
      else {
    ?>
    <?php
      echo zen_draw_form('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation" onsubmit="submitonce();"');
      if (is_array($payment_modules->modules)) {
        echo $payment_modules->process_button();
      }
    ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>
    <?php }
    ?>
    <!----------- GOOGLE CHECKOUT --------------->
    </div>

    Attach is the modify file.
    This file should be copy to
    /includes/templates/YOUR_TEMPLATE/templates folder
    Is the GoogleCheckout button suppose to be on step 2 as well where credit card, pay ipn and other payments are listed? I do not have that button on my page.

    Thanks!

  5. #225
    Join Date
    Nov 2006
    Posts
    43
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by colosports View Post
    Did you rename the YOUR_TEMPLATE folder
    i did not rename the your_template folder? it was a fresh install of zen cart and i just copied the google checkout files as instructed.

  6. #226
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Does anyone know which file is trying to access
    /admin/googlecheckout/responsehandler.php
    ? The install pack does not include any /admin/googlecheckout folder... there are errors in the log stating the about reference cannot be found.

    Help please!

  7. #227
    Join Date
    Oct 2005
    Posts
    211
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    I very much want to install this mod but have a few questions.

    As I understand this, Google Checkout will bypass Zen's checkout system.

    Will the customer still be regulated by checking off on "Terms and Conditions" or Privacy if we choose our store that way? This is very important to some stores.

    I also would like to follow up with a repeated question- Is this working with the Gift Cert.?
    Justwade
    Zen 1.5.5f
    Zen 1.3.9h, Zen 1.27 + (did that, done with that)

  8. #228
    Join Date
    Nov 2006
    Posts
    43
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    is there anything specific that i have to rename the YOUR_TEMPLATE folder into?

  9. #229
    Join Date
    Oct 2005
    Posts
    211
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Are you using a template overide system? If not you should and do it first before proceeding. You can name it anything you like such as "custom_template", or "whatever_you_want".

    And use this template system when ever you make changes to files such as this mod would require.

    If you need more info on templates, here is a place to start;

    https://www.zen-cart.com/tutorials/i...hp?article=232
    Justwade
    Zen 1.5.5f
    Zen 1.3.9h, Zen 1.27 + (did that, done with that)

  10. #230
    Join Date
    Nov 2006
    Posts
    43
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    but if i weren't using a template override system, would i have to rename the YOUR_TEMPLATE folder for google checkout to work?

 

 

Similar Threads

  1. v155 BETA feedback for Responsive-Classic in v155-beta
    By picaflor-azul in forum Addon Templates
    Replies: 51
    Last Post: 5 Mar 2016, 09:14 PM
  2. Google Checkout module support for ZC 1.5.0?
    By Woodymon in forum Addon Payment Modules
    Replies: 2
    Last Post: 21 Jan 2012, 03:18 AM
  3. Google Checkout - is there a module for 1.3.9g?
    By cchan in forum Addon Payment Modules
    Replies: 0
    Last Post: 9 Jan 2011, 05:04 AM
  4. Update Google Checkout Module or Custom Google Checkout?
    By pacificmanagment in forum Addon Payment Modules
    Replies: 1
    Last Post: 24 May 2010, 09:40 AM
  5. Replies: 1
    Last Post: 31 May 2009, 02:06 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