Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

GoTTi

Pioneers
  • Posts

    434
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by GoTTi

  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*
  15. what are the file edits to do in the files asking to overwrite when uploading to the site? product_listing.php new_products.php manufacturers.php
  16. @@apinnt were you able to get this mod setup for 2.3?
  17. seems to be working. and there is a delay on the processing the orders to show on the stamps.com application. ill do a test print in a few when order post. i did notice that the item that didnt have a weight set showed "set weight" and there was no green check next to the order. so i guess to avoid setting the weight in stamps might as well set the weight in the store.
  18. is stamps.com working with 2.3?
  19. ya im quite annoyed with it. do you withdraw the money like on paypal or does it automatically batch itself out? and have you received the deposit to your bank? how long after the transaction or withdraw did it take to get to your bank?
  20. so i received the answer from wepay as to why my API was declined....they are classifying supplements like....whey and protein....as drugs. So my reply... i can only imagine the answer coming. i shouldve known i would get declined or a issue right off the bat. i could barely get this payment service going at first...their site is all over the place and even their FAQ is half assed and not complete....their cheap live support chat thing is bunk....and they dont even accept phone calls to the number on the site. i was told "no one really answers the line" by their own person on the live chat, that its faster to email (which took days to get a response) this is why companies like this never really make it as a player in the game. they only get a small piece of the pie, and that pieece is laughable.
  21. shot down before i even started.... i replied asking what the issue was and checking to see if it i need to make some corrections. see what they say.
  22. i was testing some of the options on the scroller and came across this error when i enabled the scrolled to be on featured products shown.... please advise. thanks.
  23. GoTTi

    Square and CVV code

    ive had customers send me their cc's number before because they dont want to enter them on the site...so theyve emailed them to me and asked me to charge their card that way....some people
×
×
  • Create New...