cmbyrne Posted December 19, 2004 Posted December 19, 2004 i tried to comment it out but it just leaves "TEXT_MANUFACTURER" instead of "manufacturer:" thanks! Christina
ozcsys Posted December 19, 2004 Posted December 19, 2004 i tried to comment it out but it just leaves "TEXT_MANUFACTURER" instead of "manufacturer:" thanks! Christina <{POST_SNAPBACK}> In you admin/categories.php file find <tr> <td class="main"><?php echo TEXT_PRODUCTS_MANUFACTURER; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, $pInfo->manufacturers_id); ?></td> </tr> You can either change it to <tr> <td class="main"><?php //echo TEXT_PRODUCTS_MANUFACTURER; ?></td> <td class="main"><?php //echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, $pInfo->manufacturers_id); ?></td> </tr> or remove it completely You will also need to remove the manufacturers box from the includes/column_left.php file so it does not show up for your customers. 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??
cmbyrne Posted December 19, 2004 Author Posted December 19, 2004 In you admin/categories.php file find <tr> <td class="main"><?php echo TEXT_PRODUCTS_MANUFACTURER; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, $pInfo->manufacturers_id); ?></td> </tr> You can either change it to <tr> <td class="main"><?php //echo TEXT_PRODUCTS_MANUFACTURER; ?></td> <td class="main"><?php //echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, $pInfo->manufacturers_id); ?></td> </tr> or remove it completely You will also need to remove the manufacturers box from the includes/column_left.php file so it does not show up for your customers. <{POST_SNAPBACK}> i had already removed the box, but i was just wandering through my site and noticed it was in the new products page. Thanks for the help! Christina
cmbyrne Posted December 19, 2004 Author Posted December 19, 2004 that didn't work :x it still shows up the same View it here
ozcsys Posted December 19, 2004 Posted December 19, 2004 that didn't work :x it still shows up the same View it here <{POST_SNAPBACK}> I misunderstood where you wanted to remove it, try this. In your product_new.php file on or about line 89 Change <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . '<br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> To this <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> 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??
cmbyrne Posted December 19, 2004 Author Posted December 19, 2004 I misunderstood where you wanted to remove it, try this. In your product_new.php file on or about line 89 Change <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . '<br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> To this <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> <{POST_SNAPBACK}> worked like a charm. Thanks! just out of curiosity, what did the previous solution do? Christina
Recommended Posts
Archived
This topic is now archived and is closed to further replies.