Help with customizing product details page

Hello everyone,



My default_template.tpl file looks like this:


```php

{* $Id: default_template.tpl 11191 2010-11-11 11:56:01Z klerik $ *}

{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="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`"}
{$smarty.capture.$price}




lorem ipsum dolor sit amet lorem ipsum dolor sit amet lorem ipsum dolor sit amet lorem ipsum dolor sit amet


Shipping info....


{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}





{/if}
{/hook}
```

I really need to do the following but I'm totally lost, so please help me with this:

1- I need to replace "lorem ipsum dolor,etc..." with product description
2- I need to replace "shipping info..." with a link to the product shipping info

I hope you can help me with that. Thanks

Hello guys, is that possible to do?

Yes I think it's just {$product.description}

You can also turn on debugging In settings to

Learn all the vars or add {$product|print_r}

to your template to see a list of the product variables.