Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

chfields

Archived
  • Posts

    1,258
  • Joined

  • Last visited

Profile Information

chfields's Achievements

  1. What sql update??? I don't see anything about sql in the download.....
  2. Thanks for your help guys....guess I'll have to figure something else out....
  3. If you check my site and tell me what I'm doing wrong...I still only have 2 info boxes that it works on, I tried your suggestion above but it still isn't right....check it out and tell me what you think......
  4. I do have the BTS mod, could that be causing the problem??
  5. I used the boxes.php that you supplied. I do have a heavily modded site, but the only mod I can think of that has anything to do with the infoboxes is category box enhancenent
  6. I have a problem where only 2 of my boxes are changed, reviews and we proudly accept, everything else stays the same.....
  7. While this will not put orders in admin, it will let you know what customer ordered so you don't have to call and ask them. You may also want to consider adding this in case they don't click continue on paypal site and return to your site to finish transaction Just in case someone doesn't click continue to get back to your site here is a mod to include into your PayPal module to you can see what the customer ordered on your PayPal payment notification (just in case they don't return to your site to complete the process and generate an invoice) - BACK UP BACK UP BACK UP change the following code: function process_button() { global $order, $currencies, $currency; if (MODULE_PAYMENT_PAYPAL_CURRENCY == 'Selected Currency') { $my_currency = $currency; } else { $my_currency = substr(MODULE_PAYMENT_PAYPAL_CURRENCY, 5); } if (!in_array($my_currency, array('CAD', 'EUR', 'GBP', 'JPY', 'USD'))) { $my_currency = 'USD'; } $xx = ''; for ($i=0; $i<sizeof($order->products); $i++) { $xx .= $order->products[$i]['qty'] . '-' . ($order->products[$i]['name']) . '**'; } $process_button_string = tep_draw_hidden_field('cmd', '_xclick') . tep_draw_hidden_field('business', MODULE_PAYMENT_PAYPAL_ID) . tep_draw_hidden_field('item_name', STORE_NAME . ' ' . $xx) . tep_draw_hidden_field('amount', number_format(($order->info['total'] - $order->info['shipping_cost']) * $currencies->get_value($my_currency), $currencies->get_decimal_places($my_currency))) . tep_draw_hidden_field('shipping', number_format($order->info['shipping_cost'] * $currencies->get_value($my_currency), $currencies->get_decimal_places($my_currency))) . tep_draw_hidden_field('currency_code', $my_currency) . tep_draw_hidden_field('return', tep_href_link(FILENAME_CHECKOUT_PROCESS, '', 'SSL')) . tep_draw_hidden_field('cancel_return', tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); return $process_button_string; } the above code snippet replaces the code snippet in the catalog/includes/modules/payment/paypal.php file look for function process_button() { and then copy and paste and replace that section of code with the code above
  8. Is there a mod for admin approval of reviews for MS2 or update?? I know about the one for MS1...
  9. Do you have v_products_model? or is it just a typo from copy and paste? I see _products_model
  10. http://www.oscommerce.com/forums/index.php?showtopic=64945
  11. Well, I've already switched my site to MS2 so it's too late.......I'll just have to add the attributes by hand....
  12. I tried to delete that line and it gave me errors
  13. go to includes/application_top.php at the end of the file put your cursor next to the last > hit delete and save
×
×
  • Create New...