Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

giftmaster

Archived
  • Posts

    207
  • Joined

  • Last visited

Everything posted by giftmaster

  1. I think I found it for you osC-PrintOrder with Store Logo v1.0
  2. You can change that in the lanuage file. /shop/includes/languages/english/modules/shipping/table Line 15 define('MODULE_SHIPPING_TABLE_TEXT_WAY', 'Best Way'); Change to: define('MODULE_SHIPPING_TABLE_TEXT_WAY', 'free shipping option');
  3. I want to installl this contrubution Net Terms It was released in 2002. Will it work with the newest OS release?
  4. So very sorry. Just leave out the following in catalog/includes/classes/shipping // BOF: Individual Shipping Prices // Show either normal shipping modules or Individual shipping module when Individual Shipping Module is On // Show Individual Shipping Only if (tep_get_configuration_key_value('MODULE_SHIPPING_INDVSHIP_STATUS') and $shiptotal) { $include_modules[] = array('class'=> 'indvship', 'file' => 'indvship.php'); } else { // All Other Shipping Modules while (list(, $value) = each($this->modules)) { $class = substr($value, 0, strrpos($value, '.')); // Don't show Individual Shipping Module if ($class != 'indvship') { $include_modules[] = array('class' => $class, 'file' => $value); } } } // EOF: Individual Shipping Prices Once again, Very sorry :D
  5. I posted this question before but I think it was directed to the wrong topic. Hello everyone. I have file_feature-.77 installed which works great! I am now trying to update the Option Type for the newest revision and am having a heck of a time. Has anyone done this? I could really use some help on this. Thanks in advance. Raymond
  6. Thanks for everyone who reviewed my problem.... I figured it out!!!!!! :thumbsup:
  7. Ok I think I found the exact code. The problem is I don't know what to do with it. I tried to delete it but that just cause errors. Please!!!!!!!!!!I need help with this. This is the second to last issue I have then my site can go active This code is in catalog/includes/classes/shipping // BOF: Individual Shipping Prices // Show either normal shipping modules or Individual shipping module when Individual Shipping Module is On // Show Individual Shipping Only if (tep_get_configuration_key_value('MODULE_SHIPPING_INDVSHIP_STATUS') and $shiptotal) { $include_modules[] = array('class'=> 'indvship', 'file' => 'indvship.php'); } else { // All Other Shipping Modules while (list(, $value) = each($this->modules)) { $class = substr($value, 0, strrpos($value, '.')); // Don't show Individual Shipping Module if ($class != 'indvship') { $include_modules[] = array('class' => $class, 'file' => $value); } } }
  8. :) I have installed individual Shipping Prices In v2.0 the feature was added to show only that shipping mod. "....At checkout_shipping.pho page, only Individual Shipping Module will be visible and available. And if the Individual Price is not set for a product. You will get other Shipping Modules which you might be running besides Individual Shipping Mod." I also have a local delivery and would like it to show also. I think this is very simple to do....I just don't know where to look???? Thanks in advance, Raymond
  9. Hello everyone. I have file_feature-.77 installed which is File Upload module built on top of the Option Type Feature contribution. I am now trying to update the Option Type for the newest revision and am having a heck of a time. Has anyone done this? I could really use some help on this. Thanks in advance. Raymond :'(
  10. The upgrade is GREAT!!!!! I did run in to an erorr in the checkout confirmation. I check over the files and found this problem: STEP 4 In: /checkout_confirmation.php around line 235 or 266 change this code: <?php if (is_array($payment_modules->modules)) { if ($confirmation = $payment_modules->confirmation()) { ?> into this code: <?php // multiple orders $orders_total = tep_count_customer_orders(); if ($orders_total > 0) { $history_query_raw = tep_db_query("select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$customer_id . "' and paid_order = '0' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' order by orders_id DESC"); $orders_to_pay = tep_db_num_rows($history_query_raw); } if ((is_array($payment_modules->modules))|($orders_to_pay > 0)) { if (($confirmation = $payment_modules->confirmation())|(($orders_to_pay > 0))) { ?> I took out the red part and the error went away. I'm no expert so double check it. Thanks again for the Contribution.
  11. Thanks Daniel, it works. You mention earlier about an update or added code. How is that comming?
  12. Thanks for the Info. I have installed the mod and so far it works GREAT!!!!!! :D I am showing in orders detail in admin: Payment Method: TEXT_PAID_WITH 54. It seems like a very simple fix, just a lanuage file but I don't know which one. After that is done.........I will be also. Thanks for a great contribution.
  13. Your install list: Just add the module files to the corrasponding directories. add this sql code: ALTER TABLE `orders` ADD `paid_order` TINYINT( 1 ) DEFAULT '1' NOT NULL ; Very little code is required to make this work: around line line 108 after: Which PHP File??? $insert_id = tep_db_insert_id(); for ($i=0, $n=sizeof($order_totals); $i<$n; $i++) { $sql_data_array = array('orders_id' => $insert_id, 'title' => $order_totals[$i]['title'], 'text' => $order_totals[$i]['text'], 'value' => $order_totals[$i]['value'], 'class' => $order_totals[$i]['code'], 'sort_order' => $order_totals[$i]['sort_order']); tep_db_perform(TABLE_ORDERS_TOTAL, $sql_data_array); }
  14. The error is still there. I'm gonna skip the upgrade on this contribution. Thanks for steping up John...I think I owe you a bottle of wine for all the help you have given me!!......... :thumbsup: Raymond
  15. Thanks i'll give it a try. John...You da man!!!!!!!!!!
  16. Has anyone installed this yet? I have the same error
  17. I just Installed Bugfixed Enhancement to file upload v.77 and I'm now reciving this error in admin when I select orders. Parse error: parse error, unexpected '=' in /home/chcgift/public_html/shop/admin/orders.php on line 422 Below is the code from line 411 to 431. I'm very new to web desgin so any help would be great! Thanks <?php $heading = array(); $contents = array(); switch ($action) { case 'delete': $heading[] = array('text' => '<b>' . TEXT_INFO_HEADING_DELETE_ORDER . '</b>'); $contents = array('form' => tep_draw_form('orders', FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=deleteconfirm')); $contents[] = array('text' => TEXT_INFO_DELETE_INTRO . '<br><br><b>' . $cInfo->customers_firstname . ' ' . $cInfo->customers_lastname . '</b>'); $contents[] = array('text' => '<br>' . tep_draw_checkbox_field('restock') . ' ' . TEXT_INFO_RESTOCK_PRODUCT_QUANTITY); $contents[] = array('align' => 'center', 'text' => '<br>' . tep_image_submit('button_delete.gif', IMAGE_DELETE) . ' <a href="'?osCAdminID=357d1fb7d5b22b15ebe9bf76d9193085&osCAdminID=447578e774e42f4b81cab54c43b07bad . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>'); } break; default: if (isset($oInfo) && is_object($oInfo)) { $heading[] = array('text' => '<b>[' . $oInfo->orders_id . '] ' . tep_datetime_short($oInfo->date_purchased) . '</b>'); $contents[] = array('align' => 'center', 'text' => '<a href="'?osCAdminID=357d1fb7d5b22b15ebe9bf76d9193085&osCAdminID=447578e774e42f4b81cab54c43b07bad . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=edit') . '">' . tep_image_button('button_details.gif', IMAGE_DETAILS) . '</a> <a href="'?osCAdminID=357d1fb7d5b22b15ebe9bf76d9193085&osCAdminID=447578e774e42f4b81cab54c43b07bad . tep_href_link(FILENAME_ORDERS, tep_get_all_get_params(array('oID', 'action')) . 'oID=' . $oInfo->orders_id . '&action=delete') . '">' . tep_image_button('button_delete.gif', IMAGE_DELETE) . '</a>'); $contents[] = array('align' => 'center', 'text' => '<a href="'?osCAdminID=357d1fb7d5b22b15ebe9bf76d9193085&osCAdminID=447578e774e42f4b81cab54c43b07bad . tep_href_link(FILENAME_ORDERS_INVOICE, 'oID=' . $oInfo->orders_id) . '" TARGET="_blank">' . tep_image_button('button_invoice.gif', IMAGE_ORDERS_INVOICE) . '</a> <a href="'?osCAdminID=357d1fb7d5b22b15ebe9bf76d9193085&osCAdminID=447578e774e42f4b81cab54c43b07bad . tep_href_link(FILENAME_ORDERS_PACKINGSLIP, 'oID=' . $oInfo->orders_id) . '" TARGET="_blank">' . tep_image_button('button_packingslip.gif', IMAGE_ORDERS_PACKINGSLIP) . '</a> <a href="'?osCAdminID=357d1fb7d5b22b15ebe9bf76d9193085&osCAdminID=447578e774e42f4b81cab54c43b07bad . tep_href_link(FILENAME_ORDERS_EDIT, 'oID=' . $oInfo->orders_id) . '">' . tep_image_button('button_edit.gif', IMAGE_EDIT) . '</a>'); $contents[] = array('text' => '<br>' . TEXT_DATE_ORDER_CREATED . ' ' . tep_date_short($oInfo->date_purchased));
  18. I would love it.....Do you have a link to where it can be downloaded at?
  19. Well I spoke to soon. I had two price groups but now I have one. I have seen some reference to adding more groups to the database, I'll check and let you know what I find Ray
  20. Wow!!! It worked. Thanks, I've been stuck on this for about a week :thumbsup:
  21. I'm having the same problem. I'm very weak in sql but I have a friend working on it. As soon as I find out I'll post the solution. Ray
  22. Wow, Thats makes 3. I am also having close to the same problem. >_< 1062 - Duplicate entry '1' for key 1 insert into products_groups (products_id, products_price, customers_group_id, customers_group_price) values ('42', '59.9500', '1', '54.95') [TEP STOP] I've checked everything..Twice. If any one has an answer please let me know, I'm running out of hair to pull out
×
×
  • Create New...