
Originally Posted by
zfw88788301
... Please help me figure out what wrong with my google Production account! Thank you for your help!
Thank you for the link to your site, and it confirms what I said before. Your customization of your tpl_shopping_cart_default.php
in this file around line 160 you should have
PHP Code:
<!-- * BEGIN GOOGLE CHECKOUT * -->
<?php
// ** GOOGLE CHECKOUT **
include(DIR_WS_MODULES . 'show_google_components.php');
// ** END GOOGLE CHECKOUT **
?>
<!-- * END GOOGLE CHECKOUT * -->
<!-- ** BEGIN PAYPAL EXPRESS CHECKOUT ** -->
These lines of code must be below these lines of code
PHP Code:
<?php
} // show update button
?>
<!--eof shopping cart buttons-->
</form>
<br class="clearBoth" />
The PayPal Express code is self contained and will work reegardless of being inside the ZC checkout <form> tags. The GC code on the other hand isn't as perfected, and must be outside the ZC <form> tags. Your code currently on your shopping cart page.
HTML Code:
<-- The ZC <form> tag begins above this -->
<br class="clearBoth" />
<!--bof shopping cart buttons-->
<ul class="margin_t"><img src="includes/templates/lightinthebox/images/button/continue_shop.gif" alt="" width="154" height="19" border="0" class="hand fl" onclick="back(-1)" /><li class="g_t_c" style="padding-left: 380px;"><a href="https://ssl.perfora.net/shopezone.com/index.php?main_page=checkout_shipping_address&zenid=984184f6aa44af93a4676dab8f383925" class="buttonCheakout"></a><br/>
<!-- * BEGIN GOOGLE CHECKOUT * -->
GC code
<!-- ** END GOOGLE CHECKOUT ** -->
<!-- * END GOOGLE CHECKOUT * -->
<!-- ** BEGIN PAYPAL EXPRESS CHECKOUT ** -->
PayPal EC code
<!-- ** END PAYPAL EXPRESS CHECKOUT ** -->
</li>
</ul>
<!--eof shopping cart buttons-->
</form> <-- This here is the end of the ZC <form> tag -->
<hr class="clear"/>
This code should be like this
HTML Code:
<br class="clearBoth" />
<!--bof shopping cart buttons-->
<ul class="margin_t"><img src="includes/templates/lightinthebox/images/button/continue_shop.gif" alt="" width="154" height="19" border="0" class="hand fl" onclick="back(-1)" /><li class="g_t_c" style="padding-left: 380px;"><a href="https://ssl.perfora.net/shopezone.com/index.php?main_page=checkout_shipping_address&zenid=984184f6aa44af93a4676dab8f383925" class="buttonCheakout"></a><br/>
</li>
</ul>
<!--eof shopping cart buttons-->
</form>
<hr class="clear"/>
<!-- * BEGIN GOOGLE CHECKOUT * -->
GC code
<!-- ** END GOOGLE CHECKOUT ** -->
<!-- * END GOOGLE CHECKOUT * -->
<!-- ** BEGIN PAYPAL EXPRESS CHECKOUT ** -->
PayPal EC code
<!-- ** END PAYPAL EXPRESS CHECKOUT ** -->
I hope that this helps you out.I would like to know where you got the subscribe sidebox mod?
Bookmarks