Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

radders

Archived
  • Posts

    1,990
  • Joined

  • Last visited

Everything posted by radders

  1. Using Devosc's contribution I find that the order is not created until the echeck clears. It is however created eventually. The problem I find is that customers intend to pay by card but their card details may have changed.. So without the customer being aware Paypal create an echeck and a couple of weeks later the customer phones up to say 'Where's my stuff?' and yet the order is still uncleared on Paypal's site. My solution was to refuse to accept echecks. I wanted to accept ELV's but you cannot choose to accept one and not the other.
  2. You can leave all the other currencies in but just force the checkout pages to use one currency, by setting the currency to default currency near the top of the page. $currency = DEFAULT_CURRENCY;
  3. These refer not to folders but menu options from your admin panel.
  4. You can program in a percentage discount into easy discount just like you can pretty much any other kind of discount. Loyalty discount is one of the harder ones to do though.
  5. One route you could take is to use the contribution Easy Discount. I'm not sure if there is a simpler order total module though that just does global quantity discounts.
  6. Yes it looks as if you only sell one product!
  7. radders

    Amazon Honor System

    Credit Card Merchant Account possibly?
  8. If you are getting that sort of rate to Korea then I would suggest that you have gone wrong in the installation somewhere. The zone-based shipping module works internationally and some versions already have the recent Royal Mail rates already loaded.
  9. That sounds odd. Mine takes less than a second for the complete page load including the menu with more products than that (but I only go down to category level not product level).
  10. Puzzling that the live server accepts the capital C though. I hope they aren't going to change it. I couldn't find this piece of code anywhere. $crypt = $_REQUEST['crypt']; I guess I must have an earlier or later version installed.
  11. Well I am now completely confused. All the other hidden fields are capitalized. Seems odd that this one should not be. I have been using tep_draw_hidden_field('Crypt', $crypt);' for ages on the live server.
  12. As far as I know it is for both. I also read that we will soon need to change the submission url in the module from: https://ukvps.protx.com/vps2form/submit.asp to: https://ukvps.protx.com/vspgateway/service/...rm-register.vsp A bit confusing really having both vsp and vps in the url. I'm sure many people will get this wrong!
  13. That's good that you have added it to the contributions because this is definitely something that had been fixed last year. I haven't touched my Protx installation this year and it does use a capital letter for Crypt
  14. Just to clarify. I have the empty button but how to add the text in the correct font?
  15. I'm trying to use the silver Miami button from El Bavaro but can't find a template anywhere. Any ideas on where this might be? David
  16. I've been using devosc's Paypal Shoppig Cart IPN module for a few years now without any problems. (sorry for the typo - it looks as if I am suffering from a cold)
  17. That sounds good to me! Protx Form is a great payment option. I didn't know you were having to contract out the work on this one. Did you ever discover if there was a problem with the current module's handling of International Maestro cards? I still can't see any obvious pattern to the occasional failure. My working hypothesis is that some people abandon the purchase when they are asked to provide a password and that this is across the board rather than on just one type of card.
  18. I look forward to seeing something in the contributions section soon.
  19. For the order totals what worked for me was replacing: $pdf->addText($x,$pos,PRODUCT_TOTALS_FONT_SIZE,$order->totals[$i]['text'], $order->info['currency_value']); with: $pdf->addTextWrap($x,$pos,RIGHT_COL,PRODUCT_TOTALS_FONT_SIZE,$order->totals[$i]['text'],$justification='right'); I am conscious that I have missed out what I believe to be a scaling factor so this approach should fail in JPY etc. Before using this test carefully and check also that the size of the column is large enough to contain your biggest order. YMMV
  20. OK it works now with define('RIGHT_COL', '30'); Perhaps someone could made the totals work in a similar way.
  21. What I had in mind was $pdf->addTextWrap($x += PRICING_COLUMN_SIZES,$pos, RIGHT_COL,TABLE_HEADER_FONT_SIZE,$currencies->format(tep_add_tax($order->products[$i]['final_price'], $order->products[$i]['tax']) * $order->products[$i]['qty'], true, $order->info['currency'], $order->info['currency_value']),'right'); where RIGHT_COL has a value of 24. Unfortunately it still seems to left justify.
  22. Yes I added custom links. As it was too complicated to mess about with the programming I just did this by creating a second copy of the menu as it indicated in the code. It was a bit tricky to get it working in I.E. but I finally managed it. It went something like this: in categories_css.php var menuids=["suckertree1","suckertree2"] //Enter id(s) of SuckerTree UL menus, separated by commas Then near the bottom of the page for the second menu repeating the code about $info_box_contents, working from the example of the html generated by the original css menu, changing the links to tep_href_link and checking to see if the resulting code was correct. $info_box_contents[] = array('text' =>'<div class="suckerdiv"><ul id="suckertree2"><li>........
  23. I don't think $pdf->addText accepts a parameter for justification. function addText($x,$y,$size,$text,$angle=0,$wordSpaceAdjust=0) Check the file 'class.pdf.php'. There is another similar function which does. function addTextWrap($x,$y,$width,$size,$text,$justification='right',$angle=0,$test=0)
  24. I would like to have this run as a cron job with the results (ie the pdf file of packing slips) emailed to me. Has anyone done this? If so what do I have to change?
×
×
  • Create New...