Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tfittsy

Pioneers
  • Posts

    82
  • Joined

  • Last visited

Profile Information

  • Real Name
    Tyler

tfittsy's Achievements

  1. Does anyone have any tips on this? The catalog for one of my sites is 13 pages and it only has 43 items. Displaying the items in two columns (with descriptions on the side) or 3 columns with descriptions on bottom would make this thing so much better.
  2. I was able to adapt the MOECTOE order entry to work for my shop. The modification allows us to process credit card orders when we are finished with the order. I plan to allow a line item entry by just typing the item number and the quantity but haven't gotten around to that yet.
  3. Sorry for the delay in replies. I don't really check the forums very often. It depends what part of the product ordered he wants to have in the SMS. You could have the whole Model, Description, Quantity, Price if you wanted to but that would take it to multiple SMS messages per order. I don't even like to have two per order but if he does want that let me know what he wants and I can give you instructions. You would look for a line further up in the file that starts with this $products_ordered .= $order->products[$i]['qty'] right about that you will put $sms_products .= $order->products[$i]['qty'] . ' ' . $order->products[$i]['model'] etc. Then you would change this line: tep_mail('', SEND_EXTRA_ORDER_SMS_TO, $SMS_subject, $SMS_order, STORE_OWNER, STORE_NAME); to this tep_mail('', SEND_EXTRA_ORDER_SMS_TO, $SMS_subject, $SMS_order . $sms_products, STORE_OWNER, STORE_NAME);
  4. If you remove this portion [ . ' to ' . $order->customer['state']) . "\n" ] so that the code looks like the part below you will not receive information on where the order is going and it should fit in one sms. //Prepare SMS Message $SMS_subject = STORE_NAME . ' ' . $insert_id; $SMS_order = ''; for ($i=0, $n=sizeof($order_totals); $i<$n; $i++) { $SMS_order .= strip_tags($order_totals[$i]['title']) . ' ' . strip_tags($order_totals[$i]['text']; } tep_mail('', '[email protected];[email protected]', $SMS_subject, $SMS_order, STORE_OWNER, STORE_NAME);
  5. Is it possible to have more than one submit button on the edit orders page or somehow activate the disabled Auth.Net page. I know the Authorize.Net portion isn't working, I just need to be able to pass the values from the edit orders page to a pop up that I can use to display the values (and hopefully pass them on to my credit card processing server). Please help me out with this. It seems like it would be pretty basic HTML and maybe some JavaScript, but I'm having a hard time figuring it out with all the draw form and draw button functions. Thanks.
  6. I've seen a few phone order contributions but none of them quite fit my needs. It seems like you could work everything into just one or two files. One of my shops uses Miva and while I don't like very many things about Miva, it does have a pretty good phone order. I'm looking for something like this... Main Phone Order Page This is the main page for taking phone orders. In the Select products box you can enter an item number. If the item number doesn't exist it simply isn't added to the order and you have the option to search, which will bring up this screen. From that screen you can add multiple items by clickign the add checkbox and entering a quantity, then clicking select at the bottom. A nice feature here would be to adjust stock. Sometimes numbers get off... Back to the main screen you have shipping and payment options. These ideally will be pulled from your available shipping and payment options that are normally available. Shipping is calculated automatically. Below that you have the option to add items manually that don't exist in the database. You enter a code, a description, the quantity, price, and opttionally a note. This is helpful for items that aren't on a website but that a customer may ask for and you actually have. Below that a you enter the customers shipping and (if different) billing information. Then you click update and then process. This will bring you to the final screen. Here you enter the customers credit card information. I don't see a problem putting this on the same screen as the other information but it is probably easier to implement this way. You click place order and the credit card is verified (or whatever your payment option is setup to do) and you are given an order number. I can't find any contributions that come close to this. I've started work on this and so far have a screen where you can enter customer information in the admin to create an account. I know it's not much, but I've only been working on it for a couple of hours. Please let me know if you're interested in helping to make something like this. I'm sure there are hundreds of shop owners that would appreciate it.
  7. I'm looking for a contribution that will allow me to create orders when people call. I see one contribution allows you to effectively place an order for someone and it goes onto their account, I like that but it sounds like it isn't very secure. Also I tried one out quite a while ago and it had you pick items by going through the categories. While I would like that as an option, I'm looking for one that lets you enter item numbers and search items. Can anyone make me a good recommendation? Thanks.
  8. I've got the official PayPal IPN 1.2 setup as well as PayPal IPN 3.15. If anyone can help me get either working, that would be great. I would prefer 3.15 because I like the PayPal IPN control panel in the admin. Anyway, here is my problem on both version. Customers can checkout and the order is processed in oscommerce regardless of if they actually make a paypal payment or not. The status doesn't get updated when a successful payment is made. So I have orders that I don't know if a payment has actually been made. I think it has something to do with the IPN not being sent or received properly. Can someone please helpe me with this. Our site is almost ready to go live and this is a last second bug we have discovered.
  9. I just installed this contribution using the easy install for version 5.14, but when I go to the admin under tools there aren't any new options. Has anyone else installed using this version and the easy installer? Does it work for you if so? If it didn't and you got it working, what did you have to do?
  10. Exactly. Do you know of any shipping modules with a drop down box that I can look at for reference? Also, I will need a way for them to choose the date. I hope it's possible to do this in the shipping. If I can learn how to add a dropdown to the shipping options then I think I can figure out how to make the date selectable. Thanks for your help by the way.
  11. I was just looking at the UPS and was about to come back and explain my needs a little better. I plan to have a standard option at a base price, and then 4 other options at different prices. Under each of those prices would be different time slots. The base option would have 4 options, the second would have like 7, the third would have 9, and the fourth would have 11, and the last option would have about 40 different time slots. So ideally I would like it so that they can choose their option (and and the price that goes with that option) and then they can choose their time from a drop down box. If I were to do it like the UPS options, I would have like 70 Radio buttons for them to choose from.
  12. I'm thinking of writing a shipping module that my site will use for delivery. Is it possible for a shipping module to be interactive at all? I would like to have the customer choose from available time slots, but as far as I can tell, all shipping modules just have option for the customer and all the decisions are made beforehand in the administrator. So is it possible to code something and then have the module calculate the delivery price from what they choose, or does that all need to be done before they ever choose their shipping option?
×
×
  • Create New...