ok I've done it just.
override the following code in "archive-product.php".
========================================================
<?php
/**
* The Template for displaying product archives, including the main shop page which is a post type archive.
*
* Override this template by copying it to yourtheme/woocommerce/archive-product.php
*
* @author WooThemes
* @package WooCommerce/Templates
* @version 1.6.4
*/
get_header('shop'); ?>
<?php
/**
* woocommerce_before_main_content hook
*
* @hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
* @hooked woocommerce_breadcrumb - 20
*/
do_action('woocommerce_before_main_content');
?>
<h1 class="page-title">
<?php if ( is_search() ) : ?>
<?php
printf( __( 'Search Results: “%s”', 'woocommerce' ), get_search_query() );
if ( get_query_var( 'paged' ) )
printf( __( ' – Page %s', 'woocommerce' ), get_query_var( 'paged' ) );
?>
<?php elseif ( is_tax() ) : ?>
<?php echo single_term_title( "", false ); ?>
<?php else : ?>
<?php
$shop_page = get_post( woocommerce_get_page_id( 'shop' ) );
echo apply_filters( 'the_title', ( $shop_page_title = get_option( 'woocommerce_shop_page_title' ) ) ? $shop_page_title : $shop_page->post_title );
?>
<?php endif; ?>
</h1>
<?php do_action( 'woocommerce_archive_description' ); ?>
<?php if ( is_tax() ) : ?>
<?php do_action( 'woocommerce_taxonomy_archive_description' ); ?>
<?php elseif ( ! empty( $shop_page ) && is_object( $shop_page ) ) : ?>
<?php do_action( 'woocommerce_product_archive_description', $shop_page ); ?>
<?php endif; ?>
<?php if ( have_posts() ) : ?>
<?php do_action('woocommerce_before_shop_loop'); ?>
<ul class="products">
<?php woocommerce_product_subcategories(); ?>
<table bgcolor=#0FFFFF class="shop_table cart" cellspacing="1">
<thead bgcolor=#E2A9F3>
<tr>
<th >Thumbnail</th>
<th ><?php echo('Product'); ?></th>
<th ><?php echo('Price'); ?></th>
<th ><?php echo('Quantity'); ?></th>
<th ><?php echo('Total'); ?></th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
</tr>
</thead>
<tbody> <?php while ( have_posts() ) : the_post(); ?>
<tr>
<td ><h3><?php do_action( 'woocommerce_before_shop_loop_item_title' );?></td>
<td><?php the_title();?></td>
<td><?php do_action( 'woocommerce_after_shop_loop_item_title' );?></td>
<td class="product-quantity">
<?php
$product_quantity = sprintf( '<div class="quantity"><input name="cart[%s][qty]" data-min="%s" data-max="%s" value="0" size="4" title="Qty" class="input-text qty text" maxlength="12" /></div>', $cart_item_key, $data_min, $data_max, esc_attr( $values['quantity'] ) );
echo apply_filters( 'woocommerce_cart_item_quantity', $product_quantity, $cart_item_key );
?>
</td>
<td class="product-subtotal"></td>
<td colspan="6"><?php do_action( 'woocommerce_after_shop_loop_item' ); ?></td>
</tr>
</tbody>
<?php endwhile; // end of the loop.
?>
</table>
<?php// do_action('woocommerce_after_shop_loop'); ?>
<?php else : ?>
<?php if ( ! woocommerce_product_subcategories( array( 'before' => '<ul class="products">', 'after' => '' ) ) ) : ?>
<p><?php _e( 'No products found which match your selection.', 'woocommerce' ); ?></p>
<?php endif; ?>
<?php endif; ?>
<div class="clear"></div>
<?php
/**
* woocommerce_pagination hook
*
* @hooked woocommerce_pagination - 10
* @hooked woocommerce_catalog_ordering - 20
*/
do_action( 'woocommerce_pagination' );
?>
<?php
/**
* woocommerce_after_main_content hook
*
* @hooked woocommerce_output_content_wrapper_end - 10 (outputs closing divs for the content)
*/
do_action('woocommerce_after_main_content');
?>
<?php
/**
* woocommerce_sidebar hook
*
* @hooked woocommerce_get_sidebar - 10
*/
do_action('woocommerce_sidebar');
?>
<?php get_footer('shop'); ?>
==========================================================
But now facing the next problem.. The "Quantity" field is not working..
whatever input i'm giving there, at the CART page its showing just 1 item.. tell me if u get the solution.. And if it help u..