Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

GoTTi

Pioneers
  • Posts

    434
  • Joined

  • Last visited

  • Days Won

    1

GoTTi last won the day on July 10 2010

GoTTi had the most liked content!

Profile Information

  • Real Name
    GoTTi

GoTTi's Achievements

  1. i would use it if you could recode this to work @@mvanderhoff
  2. anyone?....i cant believe no one is using this for 2.3
  3. @@DunWeb if you can help me.... using the stamps.com application to auto update the orders is working, but i would like to notify the customer when it updates the order delivery to delivered. i am looking at the shippingzoscommerce.php file and inside this file i see this code here: //prepare $comments & save it $comments="Shipped on $shipped_on".$Carrier.$Service.$TrackingNumberString; if(OSCOMMERCE_SHIPPED_STATUS_SET_TO_STATUS_3_DELIVERED==1) { tep_db_query("insert into " . TABLE_ORDERS_STATUS_HISTORY . " (orders_id, orders_status_id, date_added, customer_notified, comments) values ('" . $this->MakeSqlSafe($OrderNumber,1) . "', '3', now(), '0', '" . $this->MakeSqlSafe($comments). "')"); //update order status tep_db_query(" update ".TABLE_ORDERS." set orders_status='3' where orders_id='". $this->MakeSqlSafe($OrderNumber,1) ."'"); } else { if($current_order_status==1) $change_order_status=2; else if($current_order_status==2) $change_order_status=3; else $change_order_status=$current_order_status; tep_db_query("insert into " . TABLE_ORDERS_STATUS_HISTORY . " (orders_id, orders_status_id, date_added, customer_notified, comments) values ('" . $this->MakeSqlSafe($OrderNumber,1) . "', '".$change_order_status."', now(), '0', '" . $this->MakeSqlSafe($comments). "')"); tep_db_query(" update ".TABLE_ORDERS." set orders_status='".$change_order_status."' where orders_id='".$this->MakeSqlSafe($OrderNumber,1)."'"); } $this->SetXmlMessageResponse($this->wrap_to_xml('UpdateMessage',"Success")); } else { //display error message $this->display_msg=INVAID_ORDER_NUMBER_ERROR_MSG; $this->SetXmlError(1,$this->display_msg); } } now im focused in this area //update order status and i cant see anything that has to do with Notify Customers command like i would check when viewing orders.php page. do you see it in here? is there something i might have to add to this area to make it email the customer the shipping details when it updates the order? thanks.
  4. when using the stamps.com import module, and i send the tracking info back to the server, it updates the order correctly, but it is not contacting the customer. is there a way to have the order update and contact the customer that the order is shipped out?
  5. this mod doesnt have to work on sites for autoparts right? i can use this for other types of sites with similar idea and just change some code around for the labeling im assuming?
  6. ya im not seeing any instructions that show how to use the CBA for 2.3....even though the package says its for 2.3 its not showing the right instructions.
  7. i also notice that when i do the update on the import, its removing the some of the extra images i have on the items. its removing any pictures after 6 images from the products.
  8. its not duplicating all the items it looks like. but it is duplicating enough to be noticeable. instead of updating prices its adding items as well.
  9. got a slight issue im sure fixable. i extracted the products and am inserting pricing on the sales fields. when i upload the excel file and choose update only, its duplicating the items it looks like instead of updating the prices. is it suppose to do that? am i missing something or doing something wrong?
  10. Products Model: is what im looking for to be in the list. it is the standard field isnt it already in osc?
  11. i tried to install this mod and then uninstalled it (just removing the folder and edits i did) and now it seems im getting a error when i insert a attribute to a product the regular way. the mod isnt installed...am i doing something wrong here?
  12. Well I finally did my own modification without asking for help. It's a step in the right direction :) If you have 1 product that can work with multiple categories, you need to link/copy that item to those categories. When you start copying the item to other product categories, the list gets quite full on the list and you have to keep scrolling to the bottom to click the drop down to choose another category and to click copy or cancel...well this easy mod will move those fields to the top of the list so you don't have to scroll anymore. Modification Download: http://addons.oscommerce.com/info/8431 Install Time: 30 seconds 1. open the file /admin/categories.php - search for case 'copy_to': In this block of code, look for $contents[] = array('text' => '<br />' . TEXT_INFO_CURRENT_CATEGORIES . '<br /><strong>' . tep_output_generated_category_path($pInfo->products_id, 'product') . '</strong>'); highlight that line, right click and copy. then delete the line. then go down a few lines and paste it below this line: $contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_COPY, 'copy', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $pInfo->products_id))); so it should look like this: case 'copy_to': $heading[] = array('text' => '<strong>' . TEXT_INFO_HEADING_COPY_TO . '</strong>'); $contents = array('form' => tep_draw_form('copy_to', FILENAME_CATEGORIES, 'action=copy_to_confirm&cPath=' . $cPath) . tep_draw_hidden_field('products_id', $pInfo->products_id)); $contents[] = array('text' => TEXT_INFO_COPY_TO_INTRO); $contents[] = array('text' => '<br />' . TEXT_CATEGORIES . '<br />' . tep_draw_pull_down_menu('categories_id', tep_get_category_tree(), $current_category_id)); $contents[] = array('text' => '<br />' . TEXT_HOW_TO_COPY . '<br />' . tep_draw_radio_field('copy_as', 'link', true) . ' ' . TEXT_COPY_AS_LINK . '<br />' . tep_draw_radio_field('copy_as', 'duplicate') . ' ' . TEXT_COPY_AS_DUPLICATE); $contents[] = array('align' => 'center', 'text' => '<br />' . tep_draw_button(IMAGE_COPY, 'copy', null, 'primary') . tep_draw_button(IMAGE_CANCEL, 'close', tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $pInfo->products_id))); $contents[] = array('text' => '<br />' . TEXT_INFO_CURRENT_CATEGORIES . '<br /><strong>' . tep_output_generated_category_path($pInfo->products_id, 'product') . '</strong>'); break; doing this small movement of code puts all the categories that load as a reference where the item is already copied to to the bottom of the actual stuff we need, like the copy/cancel button and the drop down menu to choose another category enjoy this shortcut
  13. how do i get EP to extract the SKU and Model fields for my products?
  14. i installed this on a clean copy of 2.3 and not having any luck...*sigh*
×
×
  • Create New...