Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Baltasar

Pioneers
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Baltasar

  1. Hi, ipinfodb API changed again, for the lastest version to work you have to change a few things. 1- admin/includes/classes/ipinfodb.class.php change this: line 6 from var $version = 'v2'; to var $version = 'v3'; line 30 from $xml = 'http://' . $this->service . '/' . $this->version . '/' . 'ip_query.php?key=' . $this->apiKey . '&ip=' . $ip; to $xml = 'http://' . $this->service . '/' . $this->version . '/' . 'ip-city/?key=' . $this->apiKey . '&ip=' . $ip . "&format=xml"; 2- admin/whos_online.php change this: starting line 182 replace: $country_code = mysql_real_escape_string($answer['CountryCode']); $country_name = mysql_real_escape_string($answer['CountryName']); $region_name = mysql_real_escape_string($answer['RegionName']); $city = mysql_real_escape_string($answer['City']); $latitude = mysql_real_escape_string($answer['Latitude']); $longitude = mysql_real_escape_string($answer['Longitude']); with: $country_code = mysql_real_escape_string($answer['countryCode']); $country_name = mysql_real_escape_string($answer['countryName']); $region_name = mysql_real_escape_string($answer['regionName']); $city = mysql_real_escape_string($answer['cityName']); $latitude = mysql_real_escape_string($answer['latitude']); $longitude = mysql_real_escape_string($answer['longitude']); That's it and all should start working as normal.
  2. Soveld, just chaged you code on the javascript jQuery accordeon initialization adding a new option like this: collapsible: true So now by defaul at home page all categories are close as should be. Thanks.
  3. I have bm_categories_accordion_1_2.zip installed on top of the previous base package and jQuery UI 1.9.2. EIDT: Just moved now to test to lasted UI 1.10.2 and got the same problem.
  4. Hi, kymation I just PM you since I'm having a problem with your plugin at the homepage. Since there is no categories selected all categories should be closed, but the first has the open look without contents inside. Is normal or a bug? Can you help me on a solution to work properly? Thanks, this is a great plugin !!!
×
×
  • Create New...