I don't believe there is price ON/OFF admin control for the featured products module that appears in the center of the main index page.
However, make a template override copy of file
includes/modules/featured_products.php
to:
includes/modules/YOUR_TEMPLATE_DIR/
Then with a text editor, open the copied file and look for line #54 (v1.3.6). You'll see
Code:
'text' => (($featured_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' : '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $featured_products->fields['products_image'], $featured_products->fields['products_name'], IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH, IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT) . '</a><br />') . '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . $featured_products->fields['products_name'] . '</a><br />' . $products_price);
At the end remove EXACTLY this partPrice will no longer display.