Contributions

Features (Category Index)
Search: 

Thumbnail Category Browse

This contribution places an easily browseable thumbnail row at the bottom of the product info page.

This row contains all the products in the currently viewed category with the products sorted by the products_ordered field so can be used as a powerful and easy to use upsale feature.

It has a smart memory so their place within the product thumbnails is remembered and makes for a user friendly browsing experience.

Screenshots in package.

Super easy install: upload 2 new files and add 1 line of code to product_info.php

Expand All / Collapse All

Fix for wrong parameter in thumb_bar_join.php Berkedam 29 Apr 2005

RE: thumb_bar_join.php

The wrong parameter is being used for the call to tep_get_tax_rate().

Find this code:
[code]
# define the column select list
$column_list = 'p2c.products_id, p2c.categories_id, p.products_image, p.products_price, p.products_ordered';
[/code]

and change it to this:
[code]
# define the column select list
$column_list = 'p2c.products_id, p2c.categories_id, p.products_image, p.products_price, p.products_tax_class_id, p.products_ordered';
[/code]

Next, find this code:
[code]
$currencies->display_price($tmp['products_price'], tep_get_tax_rate($tmp['products_id']))
[//code]

and change it to this:
[code]
$currencies->display_price($tmp['products_price'], tep_get_tax_rate($tmp['products_tax_class_id']))
[/code]

All done...

Thread: http://forums.oscommerce.com/index.php?showtopic=132394&st=40&p=602040&#entry602040

This is NOT a complete package but a fix only.

Download: tumb_bar_join.php(fix).zip contains same txt as in here.

PHP 5.4 Error duplicate $page number Bluestrat 10 Apr 2005
Add the product name to the image TAG & Exclude current Product (with bug fix) (GOOD FILE) Greg Armelin 8 Mar 2005
Add the product name to the image TAG & Exclude current Product (with bug fix) Greg Armelin 8 Mar 2005
Add the product name to the image TAG Greg Armelin 8 Mar 2005
Fix for the 1064 - SQL Error Matt H 6 Mar 2005
od to exclude current product from list Scott Morris 23 Feb 2005
Thumbnail Category Browse v1.1 Chemo 31 Jan 2005
Thumbnail Category Browse 1.0a V'gor A.K.A. CrNi 25 Jan 2005
Thumbnail Category Browse Chemo 24 Jan 2005

Note: Contributions are used at own risk.