MysticBlues Posted June 4, 2004 Share Posted June 4, 2004 3 Questions?????????? 1. how do I change the following text? List Price: $54.95 Retail Price: $32.95 I want list to read retail and retail to read wholesale. 2. I somehow lost the shaded table bar around reviews and add to cart. How to add it back? 3. Is it possible to have one large image at bottom of page instead of the small one with a pop up window? Thanks, Liz Link to comment Share on other sites More sharing options...
ozcsys Posted June 4, 2004 Share Posted June 4, 2004 3 Questions?????????? 1. how do I change the following text? List Price: $54.95 Retail Price: $32.95 I want list to read retail and retail to read wholesale. 2. I somehow lost the shaded table bar around reviews and add to cart. How to add it back? 3. Is it possible to have one large image at bottom of page instead of the small one with a pop up window? Thanks, Liz 1. Text is controlled in your english/ folder. It would probably be english/product_info.php unless the contribution has the info in a seperate file. 2. This is controlled by the stylesheet. I believe the default class is main but it is the same as the one with your product description in is so if you want them to be different you will need to change the class and use one that is already in the stylesheet or make a new one. 3. The placement of the picture is found in your product_info.php file. You will just have to play around with the placement until you find one you like. The size is controlled in you admin by default though you can hard code that if you want when you remove the click to enlarge. The code for the picture looks like this <?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>'; ?> You will just need to move and adjust until you get the look you want. Always backup your files before making any changes. The Knowledge Base is a wonderful thing. Do you have a problem? Have you checked out Common Problems? There are many very useful osC Contributions Are you having trouble with a installed contribution? Have you checked out the support thread found Here BACKUP BACKUP BACKUP!!! You did backup, right?? Link to comment Share on other sites More sharing options...
MysticBlues Posted June 4, 2004 Author Share Posted June 4, 2004 This is the code from my product info file. I don't see what you are referring to ;( <?php /* $Id: product_info.php,v 1.15 2002/11/19 01:48:08 dgw_ Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ define('TEXT_PRODUCT_NOT_FOUND', 'Product not found!'); define('TEXT_CURRENT_REVIEWS', 'Current Reviews:'); define('TEXT_MORE_INFORMATION', 'For more information, please visit this products <a href="%s" target="_blank"><u>webpage</u></a>.'); define('TEXT_DATE_ADDED', 'This product was added to our catalog on %s.'); define('TEXT_DATE_AVAILABLE', '<font color="#ff0000">This product will be in stock on %s.</font>'); define('TEXT_ALSO_PURCHASED_PRODUCTS', 'Customers who bought this product also purchased'); define('TEXT_PRODUCT_OPTIONS', 'Available Options:'); define('TEXT_CLICK_TO_ENLARGE', 'Click to enlarge'); ?> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.