List Price In Carusel

Hi is it possible to show the List price in the carusel block like the img i attached ?

13052501_10209327896177873_306524695_o.jpg

It is displayed in the default skin:

http://prntscr.com/atnnee

You should contact your theme developer with this issue

in which block or tpl file is configurable? because i changed them for another reason and now i want just to enable it only in carusel

i meen in the "new-arrivals" block that can show in carusel the last x days of products

design/themes/responsive/templates/blocks/products/products_scroller.tpl

replace this

{include file="blocks/list_templates/simple_list.tpl" product=$product show_trunc_name=true show_price=true show_add_to_cart=$_show_add_to_cart but_role="action" hide_price=$_hide_price hide_qty=true show_discount_label=true}

By

{include file="blocks/list_templates/simple_list.tpl" product=$product show_trunc_name=true show_price=true show_add_to_cart=$_show_add_to_cart but_role="action" hide_price=$_hide_price hide_qty=true show_discount_label=true show_old_price = true}

design/themes/[YOUR THEME NAME]/templates/blocks/products/products_scroller.tpl

nice! thx!