Hi drummerjoe
Thanks for the enquiry. You can recreate the required effect using PAPs v2.0 PLUS, but you will need to make one or two HTML-related adjustments to the display files in PAPs. By default, the entire display area is enclosed in 'tr' tags, which would need to be taken out if you wished to replace the following line:
| Code: |
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES .
$product_info['products_image']) . '" target="_blank">' .
tep_image(DIR_WS_IMAGES . $product_info['products_image'],
$product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT,
'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>';
?>
|
in product_info.php which shows the default oscommerce product image.
Also, you would have to ensure as per the installation instructions that the following lines:
| Code: |
require_once(DIR_WS_CLASSES . 'paps_delegate.php');
$paps_delegate = new paps_delegate();
$arr_globals = $paps_delegate->getProductGlobals($product_info['products_model']);
$heading_conf = $paps_delegate->getAttributeHeaderDisplaySettings
($products_options_name['products_options_name'], $product_info['products_model']);
|
all appear BEFORE the code which calls the display, which is:
| Code: |
<?php include(DIR_WS_MODULES . '/paps.php'); ?>
|
All of this is in the instructions, and I will be on hand to provide support as required.
The actual size of both thumbnails and selected image can be set via the PAPs admin panel.
Hope this helps.
Nick