If you are "not" seeing your product image when you log into the admin section of your site, under the reviews page (listed on the right-hand side of the reviews list), then try this as a solution...
In your favorite editor open up admin/reviews.php and find this code at line 268...
The issue is with function (tep_info_image). Change that line too...Code:$contents[] = array('text' => '<br>' . tep_info_image(DYNAMIC_MOPICS_THUMBS_DIR . $rInfo->products_image, $rInfo->products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT));
I have no clue where else tep_info_image is being used and how it will effect things, so i just got rid of that function in this specific spot.Code:$contents[] = array('text' => '<br><img src="../' . DIR_WS_IMAGES . DYNAMIC_MOPICS_THUMBS_DIR. $image_subdirectory . $rInfo->products_image . '" width="' . SMALL_IMAGE_WIDTH . '" height="' . SMALL_IMAGE_HEIGHT . '" /><br>');
If this worked for you, then chanced are you are also not seeing the image on your admin->categories.php list (on the right side) when viewing your listed products. Apply the same thing...
In your favorite editor open up admin/categories.php and find this code at line 1482 and change the content[] image line to....
Code:// $contents[] = array('text' => 'Main Image (shown as a thumbnail):<br />' . DIR_WS_CATALOG . DIR_WS_IMAGES . DYNAMIC_MOPICS_THUMBS_DIR . $image_subdirectory . $pInfo->products_image . '<br /><img src="../'. DIR_WS_IMAGES . DYNAMIC_MOPICS_THUMBS_DIR . $image_subdirectory . $pInfo->products_image . '" width="' . SMALL_IMAGE_WIDTH . '" height="' . SMALL_IMAGE_HEIGHT . '" /><br>');
hope this helps someone outIf you got a better solution please post!





LinkBack URL
About LinkBacks

If you got a better solution please post! 








Bookmarks