Jump to content

My PrestaShop Doesn't show Prices


Recommended Posts

Hello everyone here. I have PrestaShop™ 1.4.1.0 installed for my web. As I wanted it to display only products, I've disabled ORDER options. But the problem is that, it doesn't show price per product, however I've enabled it while adding a new product.
Any kind of suggestion is appreciated. Thanks

Edited: plus all said above, all my products are on Georgian language, not English. may it prevent PrestaShop normal functionality?

Link to comment
Share on other sites

I don't think price displaying has anything to do with language. if you set it correctly, it should be displayed.
I have tried the Catalog mode (no order function) on my demo server, it works fine.

can you post your site URL here? maybe we can see something there.

Link to comment
Share on other sites

well, It's www.Georgian.In . You can see it. (those RED prices, which you see, I made wrote them manually)
Catalog mode is ON.
When I set it off, then price appairs with all 'order' features. But I don't want them
Is there any way to get Price buttons on without turning the catalog mode off?

and one thing, I want to add visitor counter at the bottom of my home page, is it possible?

Link to comment
Share on other sites

sorry, it is my mistake, at Catalog mode, the price will not show up, this is correct.
if you want to make price show up at catalog mode, you may need to modify code in some file.

for example, in product.tpl file

there is a line like this

           {if $product->show_price AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}



if you change this line to (removing " AND !$PS_CATALOG_MODE"

           {if $product->show_price AND !isset($restricted_country_mode)}



You can do the similar thing in other files.

  • Like 1
Link to comment
Share on other sites

  • 2 months later...
Hallo Shokinro, are you sure about this solution?

you can remove all the condition and just show it without conditions.

please also be noted, there might be multiple places in the same page depend on your price display setting, such include/exclude tax.

there is also another aproach,
you can use normal online shopping mode instead of catalog mode. but hide all "add cart" buttons.
and uninstall cart block.
  • Like 1
Link to comment
Share on other sites

  • 1 year later...

sorry, it is my mistake, at Catalog mode, the price will not show up, this is correct.

if you want to make price show up at catalog mode, you may need to modify code in some file.

 

for example, in product.tpl file

 

there is a line like this

 

		{if $product->show_price AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}

 

if you change this line to (removing " AND !$PS_CATALOG_MODE"

		{if $product->show_price AND !isset($restricted_country_mode)}

 

You can do the similar thing in other files.

 

..and if you do not want to see "add to cart" button (however inactive), you must comment exclusive div:

 

<!-- <span class="exclusive">

<span></span>

{l s='Add to cart'}

</span> -->

Link to comment
Share on other sites

×
×
  • Create New...