Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

krokus

Pioneers
  • Posts

    16
  • Joined

  • Last visited

Profile Information

  • Real Name
    yann

krokus's Achievements

  1. since 1 october paypal change ssl certificat https://www.paypal-knowledge.com/infocenter/index?page=content&id=FAQ1766&expand=true&locale=en_US
  2. Hi, sorry bad english I'm not a pro, I made a modification in includes/header_tags.php, I added this code // filter name if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) { if (isset($HTTP_GET_VARS['manufacturers_id']) && !empty($HTTP_GET_VARS['manufacturers_id'])) { $db_query = tep_db_query("select categories_name as filter_name from " . TABLE_CATEGORIES_DESCRIPTION . " where categories_id = '" . (int)$HTTP_GET_VARS['filter_id'] . "'"); } elseif ($current_category_id) { $db_query = tep_db_query("select manufacturers_name as filter_name from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . (int)$HTTP_GET_VARS['filter_id'] . "'"); } $filter = tep_db_fetch_array($db_query); } under Canonical URL add-on and before the break; and in the end I modified this <title>' . $header_tags_array['title'] . ' ' . $filter['filter_name'] . '</title> to put the filter name after the category or manufacturer name, it's work but to be sure if If somebody could look and tel me if it's ok thinks
  3. Hello sorry for my bad english To understand why you have to understand how Oscommerce and Paypal work. Oscommerce confirms a order on the way back on the page checkout_success ( instead to validate the order by a return of payment). You few have an automatic return with paypal but only with the customers register to paypal.
  4. Sorry for my bad english i test this http://www.binarymoon.co.uk/2010/08/timthumb/ with bxgallery to make a real thumbnail on product page in jquery.bxGallery.1.1.min change L22 cont+='<li><img src="'+$this.attr('src')+'" /> for this cont+='<li><img src="thumb/timthumb.php?src='+$this.attr('src')+'" /> if anybody see a better way
×
×
  • Create New...