i need to move this
[quote name=‘funstyle’ timestamp=‘1313068617’ post=‘119350’]
i need to move this
[/quote]
solved
[quote name=‘funstyle’ timestamp=‘1313140814’ post=‘119404’]
solved
[/quote]
I need to do this also. how did you do it?
{your_skin|\customer\blocks\product_templates\default_template.tpl
replace with this, for cs-cart 2.1.4 pro
```php
{script src=“js/exceptions.js”}
{hook name="products:view_main_info"}
{if $product}
{assign var="obj_id" value=$product.product_id}
{include file="common_templates/product_data.tpl" product=$product}
{assign var="form_open" value="form_open_`$obj_id`"}
{$smarty.capture.$form_open}
{if !$no_images}
{include file="views/products/components/product_images.tpl" product=$product show_detailed_link="Y"}
{/if}
{$product.product|unescape}
{assign var="rating" value="rating_`$obj_id`"}{$smarty.capture.$rating}
{assign var="sku" value="sku_$obj_id"}{$smarty.capture.$sku}
{assign var="old_price" value="old_price_`$obj_id`"}
{assign var="price" value="price_`$obj_id`"}
{assign var="clean_price" value="clean_price_`$obj_id`"}
{assign var="list_discount" value="list_discount_`$obj_id`"}
{assign var="discount_label" value="discount_label_`$obj_id`"}
{if $smarty.capture.$old_price|trim || $smarty.capture.$clean_price|trim || $smarty.capture.$list_discount|trim}
{if $smarty.capture.$old_price|trim}{$smarty.capture.$old_price} {/if}
{/if}
{if !$smarty.capture.$old_price|trim || $details_page}
{/if}
{$smarty.capture.$price}
{if !$smarty.capture.$old_price|trim || $details_page}
{if $smarty.capture.$old_price|trim || $smarty.capture.$clean_price|trim || $smarty.capture.$list_discount|trim}
{$smarty.capture.$clean_price}
{$smarty.capture.$list_discount}
{/if}
{if $show_discount_label && $smarty.capture.$discount_label|trim}
{$smarty.capture.$discount_label}
{/if}
{if $capture_options_vs_qty}{capture name="product_options"}{/if}
{assign var="product_amount" value="product_amount_`$obj_id`"}
{$smarty.capture.$product_amount}
{assign var="product_options" value="product_options_`$obj_id`"}
{$smarty.capture.$product_options}
{assign var="qty" value="qty_`$obj_id`"}
{$smarty.capture.$qty}
{assign var="advanced_options" value="advanced_options_`$obj_id`"}
{$smarty.capture.$advanced_options}
{if $capture_options_vs_qty}{/capture}{/if}
{assign var="min_qty" value="min_qty_`$obj_id`"}
{$smarty.capture.$min_qty}
{assign var="product_edp" value="product_edp_`$obj_id`"}
{$smarty.capture.$product_edp}
{if $capture_buttons}{capture name="buttons"}{/if}
{assign var="add_to_cart" value="add_to_cart_`$obj_id`"}
{$smarty.capture.$add_to_cart}
{assign var="list_buttons" value="list_buttons_`$obj_id`"}
{$smarty.capture.$list_buttons}
{if $capture_buttons}{/capture}{/if}
{capture name="tabsbox"}
{assign var="but_role" value=""}
{assign var="tabs_block_orientation" value=$blocks.$tabs_block_id.properties.block_order}
{foreach from=$blocks item="block" key="block_id"}
{if $block.group_id == $tabs_block_id}
{assign var="tabs_capture_name" value="tab_`$block_id`"}
{capture name=$tabs_capture_name}
{block id=$block_id no_box=true}
{/capture}
{assign var="nav_block_id" value="block_`$block_id`"}
{if $smarty.capture.$tabs_capture_name|trim}
{if $tabs_block_orientation == "V"}
{$navigation.tabs.$nav_block_id.title}
{/if}
{/if}
{$smarty.capture.$tabs_capture_name}
{if $smarty.capture.$tabs_capture_name|trim}
{assign var="hide_tab" value=true}
{/if}
{/if}
{/foreach}
{/capture}
{capture name="tabsbox_content"}
{if $tabs_block_orientation == "V"}
{$smarty.capture.tabsbox}
{else}
{include file="common_templates/tabsbox.tpl" content=$smarty.capture.tabsbox active_tab="block_`$smarty.request.selected_section`"}
{/if}
{/capture}
{if $blocks.$tabs_block_id.properties.wrapper}
{include file=$blocks.$tabs_block_id.properties.wrapper content=$smarty.capture.tabsbox_content title=$blocks.$tabs_block_id.description}
{else}
{$smarty.capture.tabsbox_content}
{/if}
{capture name="mainbox_title"}{assign var="details_page" value=true}{/capture}
{assign var="form_close" value="form_close_`$obj_id`"}
{$smarty.capture.$form_close}
{/if}
{/hook}
```