BlessIsaacola is quite correct ..there is login link but
when arriving there only option is for existing members
to login...no option to create an account...
:shocking:
Printable View
BlessIsaacola is quite correct ..there is login link but
when arriving there only option is for existing members
to login...no option to create an account...
:shocking:
Is this the site in question: https://stargate.terrassl.net/candle...ain_page=login ?
I do not see a way for me to create an account.
Also, you will not see option to set default shipping for merchant calculation because you currently do not offer any calculated shipping (flat rate doesn't count).
Is you flat rate shipping restricted to a zone?
What do you currently have in your setting for responsehandler.php on the google side?
Have you tested things in sandbox (where you don't require SSL) I am not sure that your shared ssl is an approved ssl provider. You might want to check google's list.
SSL certificate is so cheap that there should really be no reason for an ecommerce store to still be using shared ssl.
my shipping sorry is per item.
if i enable google checkout then the account creation disappears?
i have since disabled it.
hosting is with terranetwork, I just moved fromfasthosts.
response handler info - is that in the googlecheckout folder?
[FONT=Arial]Hello
I have got This up and running but i want to offer GCO as an option after the go to checkout screen NOT before, i want it like paypal, is there a way of doing this, i don't care if google say it should be at the front i just want all the payments option all one one page. The reason being i have other mods installed like gift wrapping, they cannot choose gift wrapping because it goes right to GC. Here is how im looking to do it.
1) that a customer puts a product in the cart and hits add to cart then clicks...
2) goto checkout ( with no GCO button that is there now)
3) [/FONT] [FONT=Arial]Welcome, Please Sign In page has it on too i want if off here,
4) then the person from wherever in the world has to sign up to the website then gets the cart contents page up ( again i want GCO off this page) clicks goto checkout gets the shipping information page up then clicks o0nto the next page which is payment information, Now this is where i want GCO to be....few!
Can this be done if so how???[/FONT]
Ok, not sure if I am on the correct thread or not, so please excuse me if I am posting in error.
Here's my issue: I had a sale on one of my site and they used Google Checkout to purchase. I get an email from GC telling me of the sale, I use the link in the email to process order. I go into my site, and find that there is absolutely no record of the sale. No customer name, no record of any item being purchased. A few hours after processing the charge, I get another email from GC telling me about an error in the API callback. I discovered that I left /MY_SHOP/ in it. I removed it, saved the changes.
But today, I still show no record of a sale in my store, or items purchased. So, a friend does a test buy. They buy an item, I get notified of the sale, but have to wait the allotted time GC mandates to give the buyer a chance to cancel the order. After the allotted time, I process the charge. An hour or so goes by, I get no notification of an API callback error, so I assume that the correction was right. But, still no sale is showing in my store, no customer name, no items purchased. What am I doing wrong? Why does it not indicate a sale? Why do I not have a customer info or products sold in my admin reports? This makes it very hard to be able to keep track of sales. Any help would be appreciated.
Also, would the new version of GC correct this issue?
Removing GCO button is the easy part. All you have to do is comment out the GCO from the 3 template files that you're currently using.
As far as offering GCO as payment option like Paypal currently works, it's a tricky deal because when this has been done in the past, the radio button option send the customer to google checkout but doesn't charge anything so they shop for free.
This issue was discussed way earlier in the life of this mod that has now been abandoned.
You can also check this group: http://groups.google.com/group/googl...-support?hl=en
It sounds like your installation is messed up. Can you post your code for tpl_login_default.php here to see why that's messing up your create account page. Alternatively you can compare yours to the code below using winmerge or beyond and compare:
You might want to read the readme and installation file as well because there are specific instructions that you want to make sure you've taken into consideration.PHP Code:
<?php
/**
* Page Template
*
* @package templateSystem
* @copyright Copyright 2003-2007 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: tpl_login_default.php 5926 2007-02-28 18:15:39Z drbyte $
* @version $Id: tpl_login_default.php 5936 2007-12-14 18:15:39Z ropu - Added Google Checkout $
*/
?>
<div class="centerColumn" id="loginDefault">
<h1 id="loginDefaultHeading"><?php echo HEADING_TITLE; ?></h1>
<?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?>
<?php if ( USE_SPLIT_LOGIN_MODE == 'True' || $ec_button_enabled) { ?>
<!--BOF PPEC split login- DO NOT REMOVE-->
<fieldset class="floatingBox back">
<legend><?php echo HEADING_NEW_CUSTOMER_SPLIT; ?></legend>
<?php // ** BEGIN PAYPAL EXPRESS CHECKOUT ** ?>
<?php if ($ec_button_enabled) { ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT; ?></div>
<div class="center"><?php require(DIR_FS_CATALOG . DIR_WS_MODULES . 'payment/paypal/tpl_ec_button.php'); ?></div>
<hr />
<?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_DIVIDER; ?>
<?php } ?>
<?php // ** END PAYPAL EXPRESS CHECKOUT ** ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT; ?></div>
<?php echo zen_draw_form('create', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL')); ?>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNT, BUTTON_CREATE_ACCOUNT_ALT); ?></div>
</form>
</fieldset>
<fieldset class="floatingBox forward">
<legend><?php echo HEADING_RETURNING_CUSTOMER_SPLIT; ?></legend>
<div class="information"><?php echo TEXT_RETURNING_CUSTOMER_SPLIT; ?></div>
<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>
<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', 'size="18" id="login-email-address"'); ?>
<br class="clearBoth" />
<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
<?php echo zen_draw_password_field('password', '', 'size="18" id="login-password"'); ?>
<?php echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); ?>
<br class="clearBoth" />
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
</fieldset>
<br class="clearBoth" />
<?php
// ** GOOGLE CHECKOUT **
include(DIR_WS_MODULES . 'show_google_components.php');
// ** END GOOGLE CHECKOUT **
?>
<!--EOF PPEC split login- DO NOT REMOVE-->
<?php } else { ?>
<!--BOF normal login-->
<?php
if ($_SESSION['cart']->count_contents() > 0) {
?>
<div class="advisory"><?php echo TEXT_VISITORS_CART; ?></div>
<?php
}
?>
<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>
<fieldset>
<legend><?php echo HEADING_RETURNING_CUSTOMER; ?></legend>
<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
<?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="login-email-address"'); ?>
<br class="clearBoth" />
<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
<?php echo zen_draw_password_field('password', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_password') . ' id="login-password"'); ?>
<br class="clearBoth" />
<?php echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); ?>
</fieldset>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
<br class="clearBoth" />
<?php
// ** GOOGLE CHECKOUT **
include(DIR_WS_MODULES . 'show_google_components.php');
// ** END GOOGLE CHECKOUT **
?>
<?php echo zen_draw_form('create_account', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onsubmit="return check_form(create_account);"') . zen_draw_hidden_field('action', 'process') . zen_draw_hidden_field('email_pref_html', 'email_format'); ?>
<fieldset>
<legend><?php echo HEADING_NEW_CUSTOMER; ?></legend>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></div>
<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>
</fieldset>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT, BUTTON_SUBMIT_ALT); ?></div>
</form>
<!--EOF normal login-->
<?php } ?>
</div>
For some reason the googlecheckout.php file in the /includes/modules/payment knocked out all the logging in when Google checkout was enabled in admin. This file was from the reward points module. I have removed it and replaced with the "old file" and it is working again.
If you log in and add a gift voucher into your cart, the GC button appears, add anything else then it vanishes along with the right hand sideboxes.
I checked the login default and it is an exact match to yours.
I have double checked the installation of all the mods (started from scratch and did each mod alteration - then checked against my live files) and all seem ok.
I am going to remove the ssl now and see if that changes anything.
I have changed SSL to false and everything stays the same.
I have changed it back and have disabled GC in my admin/payments to enable logging in on the website.
I have double checked all the GC installation codes within files and they are also all correct.
admin/orders.php
includes/modules/downloads.php
includes/templates/mytemplate/templates/tpl_checkout_payment_default.php
tpl_login_default.php
tpl_shopping_cart_default.php
tpl_time_out_default.php
Other mods I have added which use the same files are:-
Better together 1.6 (I did have trouble installing this mod)
Reward points full suite 1-13a
Other mods also added include:-
Supertracker 1-0
Googlebase Froogle feeder 1-14a
Nochex APC 1-2
Backup mysql