sulupa Posted May 8, 2011 Share Posted May 8, 2011 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. ThanksEdited: 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 More sharing options...
shokinro Posted May 8, 2011 Share Posted May 8, 2011 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 More sharing options...
sulupa Posted May 8, 2011 Author Share Posted May 8, 2011 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 themIs 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 More sharing options...
shokinro Posted May 9, 2011 Share Posted May 9, 2011 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 filethere 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. 1 Link to comment Share on other sites More sharing options...
RISC Posted July 14, 2011 Share Posted July 14, 2011 Hallo Shokinro, are you sure about this solution?I have the same problem: in catalog mode no prices are show, and I removed all AND !$PS_CATALOG_MODE like you wrote, but nothing, no price were show.This an example: http://www.squamata.it/herpstore/category.php?id_category=15Other idea? Link to comment Share on other sites More sharing options...
dazzza Posted July 14, 2011 Share Posted July 14, 2011 Depending on how many products your shop has, you could set each products "quantity" to zero in back office. It will still show the product, details & price but disables the add to cart button. Link to comment Share on other sites More sharing options...
RISC Posted July 14, 2011 Share Posted July 14, 2011 mmm, I think I understand.But could this confuse the customer? (customer will see cart but can't add products, right?) Link to comment Share on other sites More sharing options...
shokinro Posted July 14, 2011 Share Posted July 14, 2011 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. 1 Link to comment Share on other sites More sharing options...
Catalin Nistor Posted March 28, 2013 Share Posted March 28, 2013 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 More sharing options...
Recommended Posts