Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

speed777

Pioneers
  • Posts

    245
  • Joined

  • Last visited

Everything posted by speed777

  1. As far as I know, you can only use flat rate shipping not standard, try that.
  2. I'm not aware of any module that does that, you could modify a free shipping module, I suppose.
  3. If you read the terms of service, you will find out that is illegal. Googlecheckout has to be separate from other payment forms.
  4. You have cut out alot more than I have, as an example: <tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" </td> </tr> </table> On my site, I have this: <!-- PWA BOF --> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><?php if (tep_session_is_registered('customer_id') && (!isset($HTTP_GET_VARS['guest']) && !isset($HTTP_POST_VARS['guest'])) && !$order->customer['is_dummy_account']) { ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" </td> <!-- PWA EOF --> I think your problem is coming from this line: tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; Try to paste the code into an unmodified version of header.php, then make the modifications you wish once you have it working properly. <a href="http://www.eofficesupply.biz/index.php">This</a> is how it should look.
  5. http://addons.oscommerce.com/info/4556
  6. My solution was to remove the cartoon checkout button and the checkout text in the breadcrumb. I'll upload an add-on with the fixes later. Now, there's only one way to checkout by using the google checkout button.
  7. Ok, I understand. There are 2 ways to checkout: the Google checkout button and the OSC checkout text, which is in the breadcrumb. When you click the OSC text, you are taken to login.php. This is a separate issue and needs a fix too. I'll work on it.
  8. Use my add-on, its simple, you just change one file. Thanks for the idea.
  9. Then it might be an htaccess problem, try removing your htaccess file and see what happens.
  10. http://www.oscommerce.com/forums/index.php?s=&...t&p=1348360
  11. Try disabling zone rate merchant calculated shipping and set GoogleCheckout Carrier Calculated Shipping to true.
  12. Google Checkout should work with both RC1 and RC2. You should use RC2 because of the improvements in security.
  13. How I can the problem with shipping cost, as at this moment it shows the default values? On your "GoogleCheckout Carrier Calculated Shipping", do you have any merchant calculated shipping, other than flat rate shipping? This will cause the default values to be shown.
  14. You left out this function: function gc_cfg_select_multioption($select_array, $key_value, $key = '') { for ($i=0; $i<sizeof($select_array); $i++) { $name = (($key) ? 'configuration[' . $key . '][]' : 'configuration_value'); $string .= '<br><input type="checkbox" name="' . $name . '" value="' . $select_array[$i] . '"'; $key_values = explode( ", ", $key_value); if ( in_array($select_array[$i], $key_values) ) $string .= ' CHECKED'; $string .= '>' . $select_array[$i]; } $string .= '<input type="hidden" name="' . $name . '" value="--none--">'; return $string; } Insert it before this function in admin/includes/functions/general.php: function tep_cfg_select_multioption($select_array, $key_value, $key = '') { for ($i=0; $i<sizeof($select_array); $i++) { $name = (($key) ? 'configuration[' . $key . '][]' : 'configuration_value'); $string .= '<br><input type="checkbox" name="' . $name . '" value="' . $select_array[$i] . '"'; $key_values = explode( ", ", $key_value); if ( in_array($select_array[$i], $key_values) ) $string .= ' CHECKED'; $string .= '>' . $select_array[$i]; } $string .= '<input type="hidden" name="' . $name . '" value="--none--">'; return $string; }
  15. Use Free Shipping w/ Minimum Amount, they have a Google checkout add-on. http://addons.oscommerce.com/info/146
  16. http://addons.oscommerce.com/info/4556
  17. I uploaded an updated add-on but its only for google checkout not paypal. I don't use paypal so I'm not familiar with it.
  18. I will add a contribution with the checkout button removed. I'm having problems with the Continue Shopping button so I'm leaving that button out and when I resolve these problems, I'll upload an add-on with the button re-installed.
  19. The advantage to removing the checkout button is that a customer account is still created in OSC Admin and a password sent to the customer. This is done automatically without any effort on the part of the merchant when a customer buys a product. The disadvantage is that you restrict the number of payment options available to the customer such as pay by check, money order or purchase order.
  20. After having 3 customers email me that the checkout buttons were confusing, I had 2 checkout buttons (regular checkout and googlecheckout), I decided to remove the regular checkout button on the shopping cart. Here is how I did it. In shopping_cart.php, I removed this code: <td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> Now the only option to pay is the google checkout button.
  21. Set Subtract Stock to true in your Configuration/Stock panel & then go to Sessions and mark them all at False, then test it.
×
×
  • Create New...