Hi @Adriano Faria,
Having trouble with how Points are shown when being used to purchase downloads and I cannot figure it out. Basically by default, for any type of carousel widget it shows fine. However in the Grid View, Table View, and on the Downloads page it just always defaults to free. I did some test and simplified the CSS in the templates to the following
<span class="cFilePrice">
{{if $file->isPaid()}}
{$price|raw}
{{else}}
{lang="file_free"}
{{endif}}
</span>
In the Downloads>Front>Browse>IndexBlock theme this seems to handle the carousels and is working as intend. The "price" for downloads show up as the points.
However when I add this to any other template it does not work. I boiled it down to the fact that the when the system is not recognizing the file as paid and going straight to the "ELSE" clause marking it as FREE. When I changed the if statement to say {{if !$file->isPaid()}} nothing shows up at all. I honestly am at my wits end and cannot figure this out as it is weird. So seeing if you can help.