Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bruyndoncx

♥Ambassador
  • Posts

    3,796
  • Joined

  • Last visited

  • Days Won

    33

Everything posted by bruyndoncx

  1. the sort order is missing from your configuration, probably you need to add the field into your product listing first for it to be available as sort option under mega menu.
  2. I really prefer a separate country and language selection like all big brands do nowadays
  3. I wondered if there are any and it made me smile :D
    https://remoteok.io/remote-oscommerce-jobs

    1. MrPhil

      MrPhil

      Matt Groening's (Life in Hell, The Simpsons, Futurama) favorite joke: "What do you call a monkey in a minefield? Baboom!"

    2. MrPhil

      MrPhil

      I've got my laptop's webcam turned off, but just in case someone manages to bypass that and turn it on, I have it (and the microphone) covered with a piece of electrical tape! Me, paranoid? Who sent you?

    3. bruyndoncx

      bruyndoncx

      Just because you are schisofrenic doesn't mean the world is not after you to get you ! :dry:

  4. how about spelling out the where clause with numerics without the year and adding the specific year end and year begin as extra where or where statements besides the typical date ranage ? (%c and %d) not using any year reference in the where clause. Sorry, I'm still pretty busy, might have some time tonight ...
  5. I just have the specials page sorted by specials_id desc, so newly added show first ... would that work for you ?
  6. i did check some account file didnt see it, should have checkef better Good job @burt
  7. fyi https://mobiforge.com/design-development/html5-mobile-web-forms-and-input-types this triggers the appropriate mobile keyboard
  8. multisafepay creates the order first with an awaiting payment status and then updates to payment received and sends the order confirmation email
  9. noop you dont tep_db_fetch_array is needed even if you just return one field in one row, it is still an array needing parsing
  10. You are missing code to fetch the result array Googling tep_db_query has this nice tutorial on mysql, and the oscommerce equivalent code required http://www.oscommerce-template-easy.com/basic-php-mysql-tutorial-for-oscommerce/mysql-database-query.html HTH
  11. in mysql 5.6 you have the locate function with this as example, if you cannot order by immediately in the sql, you can wrap it in an extra sql clause and order in the outer clause SELECT pub_name,LOCATE('at',pub_name) FROM publisher WHERE locate('at',pub_name)>0;
  12. think you have to add a routine to the freeamount routine to disable it when a product from that category is in the order. maybe you can post yhe shipping module you use and someone can tell you what needs to be inserted where exactly ...
  13. Exactly, you need to have a fixed release to test against, you can not say something works with a moving target.
  14. i see a lot of jqueru, and made me wonder if there is something developed specifically for bootstrap found this https://gist.github.com/andrewburgess/5858439
  15. could it be taht the imagesloaded.js is not finished before the slideshow is started, would moving imagesloaded.js into the header maybe help ?
  16. are you sure you dont have any javascript errors on the page ?
  17. perhaps harald is already working on it. he has taken care of the current paypal app
  18. so if you modualarize the (advanced)search page, you can plugin whatever you want searched ?
  19. Sorry, can't help here , everything in our store is shown with tax always ... (we only sell online to consumers within the EU, so it is all with sales tax)
  20. Sorry to say, but my addition of the initialization of the variable to 0 logically does the same and I think is much cleaner code.
  21. easiest I think is to initialize the value to 0 in the 'var' declaration in the beginning of the file. var $page_totalvalue = 0; it is kinda dirty, possibly you should not have that line when you have null values, but forcing it to be 0 will likely get rid of the error for you.
  22. in the class file in the query for attributes section in the totals, a join between orders and orders products is missing. so it should be WHERE o.orders_id=op.orders_id and op.orders_id=opa.orders_id if you have orders with the same products with attributes in multiple orders, thus would give strange wrong results
  23. dont know any, but if you post your code we might figure out what to change
  24. @@kymation Jim, are the public class properties just for backwards compatibility so that if you do a global replace in your code for the product info array to the product info object things will still compile ? Only a couple properties are set in the class, everything is pretty much retrieved straight from the database. If you were to set a property, eg like calculating the tax inclusive prices once for the open graph / semantic data, how should that function be called ? Also, the return line for the availability function needs fixing to // CB BUG ? // return tep_get_products_special_price($this->products_id); return $availability;
×
×
  • Create New...