Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Smoky Barnable

♥Ambassador
  • Posts

    184
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by Smoky Barnable

  1. Almost have version 1.8 working. I don't see any errors but it only displays my admin clicks and doesn't show any clicks for visitors. Any idea how to debug this issue? Thanks!
  2. I've been informed today that Google has a problem with one of my products and will suspend my account unless removed from the feed. What is the best way to remove or not include a product in the $sql query or resulting array? The specific product is a cannabis solid perfume.
  3. This is an easy fix and the warning is caused by the newer version of PHP. Putting quotes around those constants will prevent the warnings.
  4. I remember having this same problem awhile back, but it only affected the FB icon in my case. I changed the css rule .loginBtn--facebook:before located in \includes\modules\social_login_modules\templates\facebook.php I changed content: "\f230"; to content: "\f082"; You can lookup alternate icons here: https://fontawesome.com/
  5. On my test server running php 7.2 I ran into this warning: Warning: sizeof(): Parameter must be an array or an object that implements Countable in C:\xampp\htdocs\xxx\includes\classes\shipping.php on line 95 I changed: for ($i=0, $n=sizeof($quotes['methods']); $i<$n; $i++) { to for ($i=0, $n=sizeof($quotes['methods']) <= 0 && is_array($quotes['methods']); $i<$n; $i++) { Seems to work fine.
  6. I coded something like this 10 years ago. All my stock could be listed on eBay from the admin section. Stock quantity was controlled with a cron job that would keep stock levels in synch for Ebay orders. An api call was made to eBay to decrease quantity for regular orders during checkout process. When an auction was won the buyer would receive an email with a link to check out/pay by going to the my oscommerce shop. This worked out ok and some buyers even purchased more items before checking out. It was basically designed to acquire new customers and encourage customers to buy direct instead of using eBay. I gave up on it because people often didn't check their emails and eBay stripped out any html links on their site. I had fun trying though. My code is long lost and probably obsolete....just throwing some ideas out there.
  7. If new code is written it will certainly need a good eBay SDK for PHP. https://github.com/davidtsadler/ebay-sdk-php
  8. Ahh what a glorious day! I think osCommerce has a very bright future. Have a great day everyone!

×
×
  • Create New...