Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Icebird

Pioneers
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Real Name
    Luis Xavier

Recent Profile Visitors

1,438 profile views

Icebird's Achievements

  1. Just found the problem. its in your DB fix. Changed in the classes/seo.class.php: function ConnectDB() { global $db_link; $this->link_id = $db_link; } function ConnectDB_Legacy(){ $this->link_id = mysqli_connect($this->host, $this->user, $this->pass, $this->db); if (!$this->link_id) { die('Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error()); } } # end function back to: function ConnectDB(){ $this->link_id = mysqli_connect($this->host, $this->user, $this->pass, $this->db); if (!$this->link_id) { die('Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error()); } } # end function and now it is working again.
  2. Im using this version: /** * updated for 2.3.4.1. CE Frozen and PHP 7.2 * Rainer Schmied * @raiwa * [email protected] * www.oscaddons.com */ /** * Ultimate SEO URLs Contribution - osCommerce MS-2.2 Yes.. the string remains there as it was supposed to. Yes, Have tried it in sevral machines cross-browsers nothing changes All tables are in utf8mb4 That works. changing a=>b does work fine. Its just not the fancy letters that doesnt. This is very annoying if you have several language packs.
  3. Greetings, Thanks for your answer. Yes, i have taken a look at to those 2 add ons. My issue is indeed with KissIT since i added code to the tep_image() modified for KissIT to overlay an css triangle to the detected out of stock products. KissIT is a tremendous great add on and it should be core implemented since it highly decreases the stores loadout wich is crucial nowadays. Adding the out of stock overlay code in the tep_image is a way to accomplish it.
  4. Yes, i understand. Many thanks for the previous answer. It gave an highlight about the fix. Once again, many thanks Rainer.
  5. Many thanks, Rainer. forgot that i also must pass the $product_info['products_quantity'] aswell. i tried this but its not passing the value: echo tep_image('images/' . $product_info['products_image'], addslashes($product_info['products_name']), KISSIT_MAIN_PRODUCT_IMAGE_WIDTH, KISSIT_MAIN_PRODUCT_IMAGE_HEIGHT, ((KISSIT_MAIN_PRODUCT_WATERMARK_SIZE > 0)? preg_replace('%<img width="[0-9 ]+" height="[0-9 ]+" src="(.*)title=.+%', 'data-highres="$1', tep_image('images/' . $product_info['products_image'], null, $width, $height, $product_info['products_id'], $product_info['products_quantity'])) : 'data-highres="'. 'images/' . $product_info['products_image'] . '"' . $product_info['products_id'] . $product_info['products_quantity'])); It doesnt seem to pass the product image height or width correctly either. You can check it here when you go to the products page: https://www.naturhigia.pt/lojaEDGE/index.php the "sold out" triangle is pure CSS and should adapt to the product image just as it does in the front page. Mind to give me an hand, please? This might be an interesting extra to your module. :)
  6. Greetings, I have been trying to use the "Auto Out of Stock" with the KISSIT and i need a help with the funcion tep_image(); call How do i call the: function tep_image($src, $alt = '', $width = '', $height = '', $products_id = null, $stock_check = '', $parameters = '', $responsive = true, $bootstrap_css = '') { in the product_info.php: <?php echo tep_image('images/' . $product_info['products_image'], addslashes($product_info['products_name']), KISSIT_MAIN_PRODUCT_IMAGE_WIDTH, KISSIT_MAIN_PRODUCT_IMAGE_HEIGHT, ((KISSIT_MAIN_PRODUCT_WATERMARK_SIZE > 0)? preg_replace('%<img width="[0-9 ]+" height="[0-9 ]+" src="(.*)title=.+%', 'data-highres="$1', tep_image('images/' . $product_info['products_image'], null, $width, $height)) : 'data-highres="'. 'images/' . $product_info['products_image'] . '"')); ?> $products_id has to pass the $product_info['products_id'] to the tep_image() at html_output.php in functions. Thanks in advance.
  7. Greetings, I have installed this great contribution on an oscommerce 2.2rc2a and all the add-ons works perfectly EXCEPT the pdfpackingslip.php wich renders me only a completly BLANK PAGE. Does this happens to someone else or does someone knows why does this happens? Best regards, Luis Xavier
×
×
  • Create New...