Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kymation

♥Ambassador
  • Posts

    9,922
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by kymation

  1. That looks like it should work. Test it first before you send email to your customers. Regards Jim
  2. The code in Phoenix has been updated, but the functionality is the same. The USPS module uses arrays to store the values you are having problems with. Stock osC does not handle arrays, so we need to make some changes to make that happen. The change to modules.php is a key part of that. In Phoenix, find this code: if (tep_not_null($action)) { switch ($action) { case 'save': foreach ($_POST['configuration'] as $key => $value) { and add this line immediately after that: if( is_array( $value ) ) $value = implode( ', ', $value ); That should fix the problems on the Admin side. You will need to uninstall and reinstall the module for this to work. I haven't tested this module with Phoenix, so there may be other changes needed. Regards Jim
  3. It was written for the 5.x series, but with as many of the 7.x requirements as I knew about at the time. Not all of them, obviously. Regards Jim
  4. It's going to be both. You will need to find all of the PHP issues caused by the move to 7.3, then upgrade from BS3 to BS4. The "%visible%" thing is a test for the presence of one of the hidden category mods. If it is found, the code will hide the categories as required, otherwise it will be ignored. That should not be an issue for you. Regards Jim
  5. I don't have the code available right now, so I can't say for certain, but I don't remember this being built-in. You could check the product count for each category, although this will be slow in a store with a lot of products. Regards Jim
  6. We give the USPS the From and To addresses and they calculate the cost based on that information. Exactly how they make those calculations are up to them. This i the way this interface has always worked. Regards Jim
  7. USPS shipping has always been zone based so this is not the cause of any problem you might be seeing. If one or more of the services are not working for you, turn on debugging in your Admin and look at the result. Regards Jim
  8. Glad to hear you found the problem. I've been having computer problems and couldn't look at the files until now. You saved me another dive into that code. Regards Jim
  9. Did you patch the filed or just upload the new files from the MVS distro? There may be file version differences between the MVS base and the Frozen version. Regards Jim
  10. You must have a vendor with id=1. Fix that and try again Regards Jim
  11. No live sites that I know of, although there are several people using this. The images I included are from a test site that is not yet live. Regards Jim
  12. It's Paypal, so nothing is ever easy. However, the current Paypal App for osCommerce is a lot easier to set up than any of the previous modules. How well it works depends on the version of osCommerce you are using. If you're up to 2.3.4.1, either stock or CE, it should work. Well, Direct Payment will work. Any older version of osC may or may not work, so you should upgrade first if you are running an older version. In that case I recommend using 2.3.4.1 CE. Regards Jim
  13. It works well with Direct Payment on a Paypal Pro account. It does not work with Paypal Express and probably never will. Regards Jim
  14. Check whether the files are in the correct location. The manual gives you the expected location for all of the files. Regards Jim
  15. Sorry, but I'm really busy right now. You could take a shot at it -- it shouldn't be that hard. Regards Jim
  16. This change should be possible. This Addon uses a template for the email, so a different template for each language should be easy enough. You big problem here is your antiquated version of osCommerce. You cannot be running that on any version of PHP that is even halfway secure. I suggest you concentrate on updating to osC 2.3.4.1 CE. There are better Addons for that version that should do this job without modifications. Regards Jim
  17. Please ask your questions in the general forum. You'll get better answers there anyway.

    Regards

    Jim

  18. The Multi-Vendor Addon for the Community Edition is here. Regards Jim
  19. There are several Bootstrap theme generators available online. They seem to have similar functionality to the ThemeRoller site. I haven't tried them so I can't say what is best. I would be a bad judge anyway as I'm colorblind. Regards Jim
  20. I don't know what you have, but the only thing you need is a theme CSS file. OsCommerce already has all of the jQuery and Bootstrap JavaScript files. You can try creating a new folder and putting one of your CSS files in it. Just rename that file to bootstrap.min.css so that Theme Switcher can find it. Try each CSS file in turn if the first one doesn't work. If none of them work, you don't have a usable theme. If you're actually using the ThemeRoller site, that only works with the old jQueryUI version of osCommerce, not the Bootstrap version. Regards Jim
  21. It can use price, weight, or count, but only one of these per table. Regards Jim
  22. You're right, older versions of PHP used to ignore that. It's not essential, so just delete that line and you should be fine. Regards Jim
  23. Thanks, but I'm happy to answer questions that I know the answer to. And of course I know the answer because I've made the same mistake before. Regards Jim
  24. You need to make the change to admin/modules.php that is mentioned in the instructions. That change handles the arrays that the module uses to store the settings. Regards Jim
  25. It kinda got killed by the USPS. I was depending on the "all" request to get a list of available services. Then the USPS decided to limit 'all' to only the first 20 or so. The module works, but you get a semi-random selection of services to choose from. Probably not worth your time. Regards Jim
×
×
  • Create New...