I'll be out next week, in Argentina we are in hollydays
i'll be having a look to the forum, but not as regularly as usual
ropu
Printable View
I'll be out next week, in Argentina we are in hollydays
i'll be having a look to the forum, but not as regularly as usual
ropu
ropu,
This is parsing the XML output in the shopping cart and you have to scroll so far to the right to see the Google Checkout button. This obviously, is an unacceptable behavior as no Merchant will want the XML output to their customers.
Also, the button issue still hasn't been resolved. It's displaying the standard button instead of the promotion button.
Thanks for this new release.
I'm getting the same as BlessIsaacola. International shipping is not working either (I use USPS calculated shipping).
Many nice features, unfortunately cannot be used in a live shop as it is right now.
Sotty about that debug info
please delete googlecheckout/gcheckout.php line 692
PHP Code:
<xmp>
<?=$gcheck->getXml();?>
</xmp>
and regarding the button, im pretty sure that the 10% promotion, is for production, and is not shown when u are in sandbox
because the code for buttons is the same
im uploading the new version,
http://google-checkout-zencart.googl...1.3RC1rev1.zip
ropu
Hi All.
I saw one other person post with this issue, but no real solution. Everything is working fine with my Google checkout, but on an empty shopping cart page, I get the following error and a greyed-out GCO button:
I have done searched the code of the entire site, and there is only one declaration of selfURL().Code:Fatal error: Cannot redeclare selfurl() (previously declared in /home/sally/public_html/store/googlecheckout/gcheckout.php:38) in /home/sally/public_html/store/googlecheckout/gcheckout.php on line 42
Any ideas?
Thanks for any help...
Hi nabrown
i don'y really know the cause of the issue
but this should solve it
replace in googlecheckout/gcheckout.php 38
with thisPHP Code:
function selfURL() {
$s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : "";
$protocol = strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s;
$port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
return $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI'];
}
please send your feedbacksPHP Code:
if (!function_exists('selfURL')) {
function selfURL() {
$s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : "";
$protocol = strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s;
$port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]);
return $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI'];
}
}
hope this helps
ropu
ropu,
I am reporting back that everything so far works flawlessly except tax. It's not calculating taxes but UPS merchant calculated shipping as well as others are currently working.
This is a major improvement. Thanks!
BlessIsaacola, when you say tax isn't working, what exactly do you mean?
The only problem I have with the tax calculation is that GC is not rounding according to the settings I specified, I have set it to Total and Half Up, so that if for example total tax is 10.825, it should round to 10.83, but instead it seems to keep using the default and rounding to 10.82
There's still a problem with international shipping. It doesn't work yet. Does it work for you BlessIsaacola?
Also, if I want to go with installation Option B, e.i., manually editing orders.php, tpl_checkout_payment_default.php, tpl_login_default.php and tpl_shopping_cart_default.php, I'm having a bit of hard time trying to figure out where the edits go in the in the three template files because the instructions seem to be based on an older version and not the latest current ZC 1.3.7, the instructions refer to slightly different code and line number than that found in the latest files.
Perhaps you could take a look at the latest files and change the instructinos to refer to the exact code and line number.
Actually, the template files did not change from previous version so if you have a working template from previous version you should be good.
I tried checking out with a shipping address that you be taxed because it's one of the states included in the zone for taxing. Unfortunately, when I go to check out it did not include tax.
As far as internationaly goes, I got shipping option during checkout instead of the standard "We currently do not ship to your location" but not all options returned calculated shipping so I still have to look more into this.
This is definitely hit and miss and I haven't tested for all scenarios. My main tests are for soft goods, calculated shipping and tax calculation. We do not have too many international customers currently so I am not too concern about that. At least I can handle them with table rate or zones if calculated doesn't work.
I will continue testing and report back.
tj, orders.php is based on 1.3.7
but templates, im not sure... the truth is that i missed up checking that.
thx for the reminder...
regarding intl shipping, what is the issue?
please double check that ur shipping option is under the internationl_types in includes/modules/payment/googlecheckout.php
if is not there, it wont be show for countries different form US.
that way i now added flat intl, table intl, etc
btw im runing a batch script comparing fedex and ups response times usign zencart shipping class, and times for ups arent good, ill post results and teh scrip so u can also test it, and the send results to google guys!
hope this helps
ropu