To continue....
I used the example cited in the above response to my initial post
Code:
INSERT INTO configuration (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES ('Featured Sidebox Image Width', 'IMAGE_FEATURED_WIDTH', 80, NULL, NOW(), NULL, NULL);
INSERT INTO configuration (`configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES ('Featured Sidebox Image Height', 'IMAGE_FEATURED_HEIGHT', '80', 'Default = 80', 4, 81, NULL, NOW(), NULL, NULL);
I am unsure why there is a '4' and a '81' in there. Therefore, I don't know if I should change those values.
and change the code in tpl_featured.php from...
Code:
$content .= '<a href="' . zen_href_link(zen_get_info_page($random_featured_product->fields["products_id"]), 'cPath=' . zen_get_generated_category_path_rev($random_featured_product->fields["master_categories_id"]) . '&products_id=' . $random_featured_product->fields["products_id"]) . '">' . zen_image(DIR_WS_IMAGES . $random_featured_product->fields['products_image'], $random_featured_product->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
...to...
Code:
$content .= '<a href="' . zen_href_link(zen_get_info_page($random_featured_product->fields["products_id"]), 'cPath=' . zen_get_generated_category_path_rev($random_featured_product->fields["master_categories_id"]) . '&products_id=' . $random_featured_product->fields["products_id"]) . '">' . zen_image(DIR_WS_IMAGES . $random_featured_product->fields['products_image'], $random_featured_product->fields['products_name'], IMAGE_FEATURED_WIDTH, IMAGE_FEATURED_HEIGHT);
Any feedback would be much appreciated, as I would rather not try this without knowing it will work.