Remove the colon seperating the word price and the price

Does anyone know how I can remove the “:” that seperates the word price and the actual price being shown so

it looks like $12.99 instead of Price: $12.99. I know I can remove the language word Price and then I get : $12.99

but I can't figure out how to remove the “:”.

probably in

skins//customer/common_templates/product_data.tpl

[quote name='tbirnseth' timestamp='1319752617' post='124711']

probably in

skins//customer/common_templates/product_data.tpl

[/quote]





yeah i figured that finally but haven't been able to locate the “:” yet. Any ideas let me know. thanks.

In product_data.tpl on line 200, you should have:


{if $details_page}{$lang.price}: {/if}{include file="common_templates/price.tpl" value=$product.price span_id="discounted_price_`$obj_prefix``$obj_id`" class="price"}



Just remove the :



Also, this is within the prices_block hook, so you can make your change without having to edit the core file.



Hope that helps,



Brandon

[quote name='brandonvd' timestamp='1319766042' post='124726']

Also, this is within the prices_block hook, so you can make your change without having to edit the core file.



Hope that helps,



Brandon

[/quote]



Helps a bunch. I'm so stoked its a hook. I have been working very hard to avoid editing core files as much as possible.