Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bgentryk

Archived
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Real Name
    Brad

bgentryk's Achievements

  1. Sorry about the duplicate posts...site hung up and I hit post three times.
  2. Alright...I was hung up on this no account thing for a couple of days. I didn't want to try this contribution because my site is heavily modded, which most of ours are. I suddenly realized that what I really wanted was for the customer not to feel inconvenience with having to create an account in order to purchase something, but I still needed the account info for shipping and such. So what I did was just to make the account creation seem to be part of the checkout process itself. The data entry is still the same for the customer, but somehow is seems to be much less of a hassle for them. Now, when the customer clicks on checkout and they are not logged in, the checkout_shipping page redirects them straight to the create_account page instead of the login page. They fill in the information and are oblivious to the fact that they have just created and account. Works great, and it's simple. If you would like to see this in action, just visit my site at www.justjetskis.com, add something to the cart and click checkout. If you need to know exactly how to do this, just PM me.
  3. Alright...I was hung up on this no account thing for a couple of days. I didn't want to try this contribution because my site is heavily modded, which most of ours are. I suddenly realized that what I really wanted was for the customer not to feel inconvenience with having to create an account in order to purchase something, but I still needed the account info for shipping and such. So what I did was just to make the account creation seem to be part of the checkout process itself. The data entry is still the same for the customer, but somehow is seems to be much less of a hassle for them. Now, when the customer clicks on checkout and they are not logged in, the checkout_shipping page redirects them straight to the create_account page instead of the login page. They fill in the information and are oblivious to the fact that they have just created and account. Works great, and it's simple. If you would like to see this in action, just visit my site at www.justjetskis.com, add something to the cart and click checkout. If you need to know exactly how to do this, just PM me.
  4. Alright...I was hung up on this no account thing for a couple of days. I didn't want to try this contribution because my site is heavily modded, which most of ours are. I suddenly realized that what I really wanted was for the customer not to feel inconvenience with having to create an account in order to purchase something, but I still needed the account info for shipping and such. So what I did was just to make the account creation seem to be part of the checkout process itself. The data entry is still the same for the customer, but somehow is seems to be much less of a hassle for them. Now, when the customer clicks on checkout and they are not logged in, the checkout_shipping page redirects them straight to the create_account page instead of the login page. They fill in the information and are oblivious to the fact that they have just created and account. Works great, and it's simple. If you would like to see this in action, just visit my site at www.justjetskis.com, add something to the cart and click checkout. If you need to know exactly how to do this, just PM me.
  5. When I installed this module, I had a problem with my products that are not slaves. The product_info page would show a drop down box labeled "quantity_text" and the customer had to change the value to 1 to order. Also, none of the options would transfer to the cart. I tracked it down to the form used on the page. Here is the original code: <td width="800" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> and here is the code after MS2 was added: <td width="800" valign="top"><?php echo '<form name="buy_now_" method="post" action="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=add_slave', 'NONSSL') . '">'; ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> Here is my fix if anyone is interested: <!-- Master Products //--> <?php $master_status_query = tep_db_query("select p.products_master_status from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "'"); $master_check = tep_db_fetch_array($master_status_query); if ($master_check['products_master_status'] > 0) { ?> <td width="800" valign="top"><?php echo '<form name="buy_now_" method="post" action="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=add_slave', 'NONSSL') . '">'; ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> <?php } else { ?> <td width="800" valign="top"><?php echo tep_draw_form('cart_quantity', tep_href_link(FILENAME_PRODUCT_INFO, tep_get_all_get_params(array('action')) . 'action=add_product')); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> <?php } // Master Products EOF As you can see, I use the products_master_status field to determine which form to draw up. Works like a charm. BG
  6. Exactly the contribution I've been looking for! I've been so frustrated with my site...I may have one product that is custom made for every jet ski model out there, so I've been making a new product for each model. Very ugly on the site. Thanks so much...I'm trying it tomorrow.
  7. It is possible that the paths in your configuration files are not all entirely correct, also. That is the same error I was getting upon installation and come to find out one of my https paths was incorrect.
  8. Okay... I have everything working with this mod except...I don't get much order detail when using direct pay. All I get that is useful is shipping address and order total, but I really need to be getting more detail such as item number, description, and any options selected. Does anyone have a fix for this? I thought that IPN was supposed to handle this, but it seems to be completely separate from direct payment.
  9. Alright... I know there are posts here about this error, but nothing discussed fixes my problem. I am hoping that someone out there has a new perspective on this. My error is: Fatal error: Call to undefined function: setopt() in /home/u3/bgentryk/html/catalog/includes/modules/payment/paypal_wpp.php on line 324 every time I try to connect w/ paypal, whether it be express or direct. HELP!!!!
×
×
  • Create New...