Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 40
  1. #11
    Join Date
    Aug 2005
    Posts
    34
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Quote Originally Posted by w00gle View Post
    eva01,

    Yes, I set up GCO button to not show up until step 3.
    Yes, the customer has to create an account to proceed through the checkout process.

    Here's the mod I've been testing. It includes a README file.
    Back up the files I listed in the README file before replacing them with the modified files.

    Let me know what you think.
    Thanks I'll give it a try tomorrow, hope it works.

    Kim, I'm not left with too many options unless someone can show me how to get rid of the regular checkout button, and only have the GCO button. Or, have GCO work somewhere along the regular checkout process...something, anything.

    Right now it's a MAJOR problem for me to have the regular checkout lead to nowhere. A customer will just click that button, go through the whole process making it look like a successful transaction. After it's done maybe they'll be a little confused that they entered no payment info, but it'll be up to me to sort out the mess.

  2. #12
    Join Date
    Aug 2005
    Posts
    34
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Woogle good stuff man. Am I your first beta tester?
    Here is what I'm seeing as a test customer: the GCO button is still there at the shopping cart. So I can continue and use GCO w/o creating an account or logging in which should keeps the spirit of GCO alive.

    I can also just use the regular checkout button which leads me to the login page where I can login, create a new account, OR use the GCO button=)

    If I still skip the GCO button, I continue logged in and at the final step 3, instead of confirm order, my only option to pay is GCO=) PERFECT. This should be somehow integrated into the next GCO revision.

    BUG BUG BUG BUG
    Note, I had to modify one of the files. Originally I received an error before getting to step 3. It said there was a syntax error at line 93 of - tpl_checkout_payment_default.php. I did some investigating and the offending line is:
    <div class="buttonRow forward"><?php echo // '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>

    which is part of a section that is commented out. I just copied back the original section to your modified file, and that did the trick. I replaced :

    <!-- Commented out to not show the Special instructions or Comments entries
    <h2 id="checkoutConfirmDefaultHeadingComments"><?php //echo HEADING_ORDER_COMMENTS; ?></h2>
    <div class="buttonRow forward"><?php echo // '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <div><?php //echo (empty($order->info['comments']) ? NO_COMMENTS_TEXT : nl2br(zen_output_string_protected($order->info['comments'])) . zen_draw_hidden_field('comments', $order->info['comments'])); ?></div>
    <br class="clearBoth" />
    -->

    WITH:

    <h2 id="checkoutConfirmDefaultHeadingComments"><?php echo HEADING_ORDER_COMMENTS; ?></h2>

    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>

    <div><?php echo (empty($order->info['comments']) ? NO_COMMENTS_TEXT : nl2br(zen_output_string_protected($order->info['comments'])) . zen_draw_hidden_field('comments', $order->info['comments'])); ?></div>

    <br class="clearBoth" />


    Thanks again Woogle, I'll continue to test. I hope Ropu gets a hold of your mod and can use it. I don't mind the GCO button still showing up for customers to bypass login. At least now using the regular checkout doesn't lead to nowhere, and there is no violation of TOS=)

  3. #13
    Join Date
    Feb 2007
    Posts
    39
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Thanks for the feedback Eva!

    I found the issue
    PHP Code:
    <div class="buttonRow forward"><?php echo // '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    should have been
    PHP Code:
    <div class="buttonRow forward"><?php // echo  '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    Notice where the change where the "//" is at.

    Ropu won't be happy if he sees it. The function of the "Confirm Order" button is for other payment modules such as COD and CCs orders. I see that the best way to implement the GCO button is to use it in a shopping cart similar to Newegg's shopping cart page where tax is calculated based on your input of zip code and shipping rates can use the code already written for shipping estimator but it'll be zip code based as well instead of country selection
    -----------------------------------------------------------------------
    Do you Gogo?

  4. #14
    Join Date
    Feb 2007
    Posts
    39
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Just want to point out the file that had the "//" misplaced is tpl_checkout_confirmation_default.php
    -----------------------------------------------------------------------
    Do you Gogo?

  5. #15
    Join Date
    Feb 2007
    Posts
    39
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Here's a new package with the correction.
    -----------------------------------------------------------------------
    Do you Gogo?

  6. #16
    Join Date
    Feb 2007
    Posts
    39
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Here it is again.
    Attached Files Attached Files
    -----------------------------------------------------------------------
    Do you Gogo?

  7. #17
    Join Date
    May 2005
    Posts
    12
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    how is this coming along?

  8. #18
    Join Date
    Apr 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    hi, how can one make the stock checkout option disappear from the cart, so as to have only the Google CheckOut icon/link showing up, so that there is no logging in, and the customer goes right to GCO, and enters their info there? Also, i know the shipping amount wouldn't be passed to Google, but could the customer order info entered at the GCO site still show up in the admin UI? Any ideas at all would be greatly appreciated, THANKS!

  9. #19
    Join Date
    May 2005
    Posts
    12
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    Using on my production site! Thank you!!

  10. #20
    Join Date
    Apr 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Strictly Google Checkout! Please Help Me!

    I using this mod and it appears to be working fine, the only issue I have is that the google checkout button is forced over to the right hand side of the screen (I.E. Not directly underneath where it should be). Does anyone have any ideas how I can alter it's alignment?

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Google Checkout Error - Help Please!
    By g3steve in forum Addon Payment Modules
    Replies: 3
    Last Post: 27 May 2010, 12:08 PM
  2. HELP Please. Google Checkout
    By EnergyTin in forum Addon Payment Modules
    Replies: 4
    Last Post: 26 Apr 2009, 07:51 PM
  3. Google Checkout Problem PLEASE HELP
    By neal41835 in forum Addon Payment Modules
    Replies: 5
    Last Post: 15 Aug 2008, 06:43 AM
  4. Please Help, Google Checkout
    By dannyboye in forum Addon Payment Modules
    Replies: 1
    Last Post: 22 Dec 2006, 04:37 AM
  5. google checkout error. please help
    By jercocomputers in forum Addon Payment Modules
    Replies: 1
    Last Post: 15 Dec 2006, 03:48 AM

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