Hi,
I want to remove the cart box under Product info and increase the text size of the product info in some category.
How can I do that?
Thanks.
Here's the screen to show what I wanted to do.
Hi,
to remove it, open your product.tpl in
catalog/view/theme/YOURTHEME/template/product/ folder
delete :
increasing the text size, simple way is put <span> tag, e.g text "Price:"
find : <b><?php echo $text_price; ?></b>
put
<span style="font-size: 16px;"><b><?php echo $text_price; ?></b></span>
maybe someone have better idea?
to remove it, open your product.tpl in
catalog/view/theme/YOURTHEME/template/product/ folder
delete :
Code: Select all
<div style="background: #F7F7F7; border: 1px solid #DDDDDD; padding: 10px;"><?php echo $text_qty; ?>
<input type="text" name="quantity" size="3" value="1" />
<a onclick="$('#product').submit();" id="add_to_cart" class="button"><span><?php echo $button_add_to_cart; ?></span></a></div>
<input type="hidden" name="product_id" value="<?php echo $product_id; ?>" />
<input type="hidden" name="redirect" value="<?php echo $redirect; ?>" />
find : <b><?php echo $text_price; ?></b>
put
<span style="font-size: 16px;"><b><?php echo $text_price; ?></b></span>
maybe someone have better idea?
Who is online
Users browsing this forum: No registered users and 23 guests