Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter

  Recently Viewed Products(sales optimized)

The following osCommerce contribution is a free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
all HTML tages are stripped in order to avoid displaying invalid HTML codes in Recently Viewed list

catalog/Recently_Viewed.php

at line 87

replace

$description = $products['products_description'];

with

$description = tep_flatten_product_description($products['products_description']);

jn

BACKUP FIRST ! BACKUP FIRST !

catalog/includes/recently_viewed.php
catalog/includes/modules/recently_viewed.php



Two ways to display to correct price with tax

replace:

$info_box_text .= $currencies->display_price ($products_data[$products_id]['price'], tep_get_tax_rate ($products_data[$products_id]['products_tax_class_id']) );


with

$info_box_text .= $currencies->display_price ($products_data[$products_id]['price'], tep_get_tax_rate ($products_data[$products_id]['tax_class_id']) );



OR OR OR OR OR OR

replace

$products_data[$products_id] = array ('id' => $products_id,
'name' => $products['products_name'],
'image' => $products['products_image'],
'price' => $products['products_price'],
'tax_class_id' => $products['products_tax_class_id'] ///here is the mistake tax_class_id and in the 2 files it appends products_data[$products_id]['products_tax_class_id']
);


with

$products_data[$products_id] = array ('id' => $products_id,
'name' => $products['products_name'],
'image' => $products['products_image'],
'price' => $products['products_price'],
'products_tax_class_id' => $products['products_tax_class_id']
);


Hope this helps.
Full package

Visible : http://www.oscommerce-screenshots.com/recently-viewed-products-p-356.html
The previous version has been updated with several new features:

An optional link in either side column to a page of recently viewed products.

An optional box in either side column with each product's image, name, and price, plus a button linked to a page of recently viewed products. The number of products shown and each of the elements can be controlled from tha Admin.

An optional box at the bottom of the page with each product's image, name, description, and price, plus a button linked to a page of recently viewed products. The products can be diplayed in a grid (like the New Products box) or in rows like the Category product list. The number of products shown, the length of the description, and each of the elements can be controlled from tha Admin.

A page with each product's image, name, description, price, and a Buy Now button. The number of products shown, the length of the description, and each of the elements can be controlled from tha Admin.

The database table added by the previous version has been removed.

Screenshots of both of the tables, the recently viewed products page, and the Admin page are included in the distribution.

This version is compatible with osCommerce 2.2RC2a, PHP 5.x, MySQL 5.x, and Register Globals on or off.
   Posted on: 11/05/2008     See contribution details Request Installation with Paid service