Search the Community
Showing results for tags 'Product price'.
-
This is my shop and on some products the price is not been visible, I comproved that the products are configured correctly, and the price should been visible. (1st photo) On the template I've tried to var_dump the $product.price variable every line to see how far this variable goes (2nd photo) But something strange happens, after the 4th dump nothing appears anymore (3rd photo)
-
My company does not require VAT on the products sold, whilst I have been able to disable the tax features for the product pricing itself, the Cost Price (VAT excluded) field on the pricing tab has left me slightly confused, obviously theres VAT on the Wholesaler products I purchase. My concern is if prestahop uses the Cost Price when generating the reports but does not add the VAT onto the Cost Price during its calculations it will result in inaccurate values. Any advice appreciated.
-
I searched the forums and could not find this answer so apologies if I missed it. I am designing our new website using prestashop and have it down pretty good except I do not know exactly how to add multiple prices per product. On our current website I can add one product then give it multiple prices (50ml, 100ml, 500ml etc) and when that size is added to the cart it will calculate the new price based on the pricing I set up in the backend. Example can be found below of it working live. Just need to know how to o this in prestas BO. Thanks! http://www.innov-research.com/innov2010/shop/6-animal-biologicals/33-plasmas/101-beagle-plasma
- 17 replies
-
- price
- product page
-
(and 2 more)
Tagged with:
-
BULK PRICE UPDATE This is not a module, but is a completely independent Prestashop addon and is not installed in the Prestashop Back-office. Its main function is to update the prices of products and their combinations easily and quickly through a responsive graphical interface adapted to all mobile devices. This application is able to update the products and their combinations in bulk for each category or group of categories. In addition it is also able to update the prices of each of the products through a table with advanced search, filtering and paging functions. You can update the final prices (taxes included), base prices or wholesale prices. In addition, you have multiple price update options (percentage, quantity, increase, decrease, fixed quantities, rounding modes, price types, etc ...) As if that were not enough, it also has the function of making backups automatically before performing any action. So that your data is always safe in case of errors during the processes. The application uses the same programming code as Prestashop, it even uses the same access data of employees with an administrator profile. With this application you will save many hours of time to update your store prices in bulk. YOU CAN BUY THIS ADDON IN THE FOLLOWING LINK: BUY BULK PRICE UPDATE
-
- combination price impact
- combination price
- (and 8 more)
-
Hi everyone, I'm making my shop with prestashop 1.7.2.4 I need to make a discount for single products, based on total cart amount. Expample: My product "A" cost € 1,00 , I want make a discount it, and sell it € 0,70 , if my customers spend € 25,00 in my shop (total cart amount). It possible customize prestashop code in Products > Prices > Specific Prices, where is possible make similar rule by "Product Quantity", and add fields and condition for make a rule by " € Total cart amount" ? Or ther is some modules for make this? Anyone can help me please? Thanks
- 4 replies
-
- product price
- specific price
-
(and 2 more)
Tagged with:
-
Hello, I'm trying to figure out how to 'not' have tax included in the price on the product details page. It would also be great to not have it display on the product prices in the cart. If someone could point me in the right direction I would greatly appreciate it. Thanks, Don PrestaShop™ 1.5.4.1
-
Hi , I found on product page some product has product price $0.00 . i debug and found price of product override by javascript code. i also find var productPriceTaxExcluded =0; var productPriceTaxIncluded = 0 ; Thanks!
- 1 reply
-
- productpricetaxincluded
- productpricetaxexcluded
-
(and 1 more)
Tagged with:
-
how to display unit price and product price into checkout page like a new row as shown on image? in my case carton price is prduct price I think it's order opc file ...but what code? thanks a lot
- 1 reply
-
- unit price
- product price
-
(and 1 more)
Tagged with:
-
How to show tax label in product list?
csm92 posted a topic in Addons, modules and themes developers
How i can show "+ TVA" label, after price in products list. In product page this label it's displayed but in category page where all the products are listed the "+ TVA" label don't appear. here is the code from product-list.tpl <span class="price"> {if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if} {if $product.price_without_reduction > 0 && isset($product.specific_prices) && $product.specific_prices && isset($product.specific_prices.reduction) && $product.specific_prices.reduction > 0} {if $product.specific_prices.reduction_type == 'percentage'} <strong class="percent-reduction">-{$product.specific_prices.reduction * 100}%</strong> {/if} {/if} </span> and here is code from product.tpl <div> <p class="our_price_display" itemprop="offers" itemscope itemtype="https://schema.org/Offer">{strip} {if $product->quantity > 0}<link itemprop="availability" href="https://schema.org/InStock"/>{/if} {if $priceDisplay >= 0 && $priceDisplay <= 2} <span id="our_price_display" class="price" itemprop="price" content="{$productPrice}">{convertPrice price=$productPrice|floatval}</span> {if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) || !isset($display_tax_label))} {if $priceDisplay == 1} {l s='tax excl.'}{else} {l s='tax incl.'}{/if} {/if} <meta itemprop="priceCurrency" content="{$currency->iso_code}" /> {hook h="displayProductPriceBlock" product=$product type="price"} {/if} {/strip}</p> i attached a screenshot-
- tax label
- product price
-
(and 1 more)
Tagged with:
-
I want to create a module that shows the product price in the product page tab. With my limited coding and prestashop structure knowledge, I created the module below. Currently, this module works fine and the simple txt html code in "mymodule.tpl" appears in my product page tabs. The next two steps are 1-Calling product price from database in mymodule.php 2-Printing this variable through the mymodule.tpl. ( Call productprice variable from mymodule.php and print it). The problem is that I don't know how to do both. I tried hard but couldn't find a solution. Can someone please help me? Thanks in advance! ---------------------------------------------------------------------------------------------------- <?php if (!defined('_PS_VERSION_')) { exit; } class MyModule extends Module { public function __construct() { $this->name = 'mymodule'; $this->tab = 'front_office_features'; $this->version = '1.0.0'; $this->author = 'Firstname Lastname'; $this->need_instance = 0; $this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_); $this->bootstrap = true; parent::__construct(); $this->displayName = $this->l('My Module'); $this->description = $this->l('Description of my module.'); $this->confirmUninstall = $this->l('Are you sure you want to uninstall?'); if (!Configuration::get('MYMODULE_NAME')) $this->warning = $this->l('No name provided'); } public function install() { if (Shop::isFeatureActive()) Shop::setContext(Shop::CONTEXT_ALL); return parent::install() && $this->registerHook('displayAdminProductsExtra')&& $this->registerHook('displayProductExtraContent')&& $this->registerHook('ActionProductUpdate') && Configuration::updateValue('MYMODULE_NAME', 'my friend'); } public function uninstall() { if (!parent::uninstall() || !Configuration::deleteByName('MYMODULE_NAME') ) return false; return true; } public function hookDisplayProductExtraContent($params) { $content = $this->display(__FILE__, 'mymodule.tpl'); $array[] = (new PrestaShop\PrestaShop\Core\Product\ProductExtraContent()) ->setTitle('My New Tab Title') ->setContent($content); return $array; } } --------------------------------------------------------------------------------------------------------------------------------
-
- product price
- module
-
(and 1 more)
Tagged with:
-
// I apologize for my english // I'm using prestashop 1.7.2 Hi, I'm trying to add a product to cart with a custom price from an input field. I'm thinking about 2 solutions : - I found on a topic a trick with the specific price which allow to change the price just before adding to the cart, BUT i'm facing a problem with this method : I don't know how to call the php function which do the specific price stuff in my template. I already tryed a <button onclick="{MyController::myfunction(param1, param2 ...)}">Add</button> in product-add-to-cart.tpl but the code is already interpreted when the page is charging (onclick event is useless). How can i call my function by pressing the add to cart button ? - Another solution could be to create a duplicate product with a custom price , each time the input price is filled and the add to cart button pressed. I don't know how to achieve this, the problem is a bit similar to the first solution : how to call the function which create the new product when i press add to cart button ? I hope my ideas were clear, Thanks for help
-
- input field price
- add to cart
-
(and 2 more)
Tagged with:
-
Hello I am an apprentice of Prestashop; I need this info: if I set in BO an extra shipping cost for a product, is it possible to show it in the homepage or at least in the specific page of the product? In other words I don't want that the customer would notice the extra shipping cost of the product only when he will put it in the cart Thanks Maurizio
-
Hi I'm fairly new to Prestashop and am a developer. I have setup customer groups with a discount for each group. For example: Group 1 - 35% discount Group 2 - 40% discount Group 3 - 45% discount My question is fairly simple. When I log in as a customer in one of these groups, I would expect to see the non-discounted price as well as the discounted price shown on the product page, but only the reduced price is shown. Does anyone have any idea of how to achieve this? I have looked at various answers but the solutions either do not work, or are not applicable. Any help would be much appreciated. Thanks David
- 20 replies
-
- product price
- price group
-
(and 1 more)
Tagged with:
-
Hi! I searched on internet and forum but cant find the right solution. Using Prestashop 1.5.6.1 Prestashop calculates tax based on product price and rounds it. Nothing wrong with that if your customer is buying 1 or 2 same products. But when your order 10 or 30 same items, the final tax amount is wrong. Sometimes the difference is more than 1 euro! Is it possible to calculate the tax over the total price instead of product price? Where should i be to change it (which file) and what should I change. Or is it possible to stop rounding the price on 2 (or more) decimals? Hope someone can help Regards, Keron
- 2 replies
-
- tax calculation
- total price
-
(and 2 more)
Tagged with:
-
Hi, I've installed prestashop 1.6 Want to hide the default Price on the products (Which is shown by default when a product is created). Don't want to enable Catalogue mode.. Price will be shown upon the selection of the product attributes. Also want to hide the Product Conditions option. (New, Used....) Using the Default theme.
-
Hi, I have a question about "Specific prices" : Apparently the specific price of a product is applied regarding the "Delivery address" of the customer. Where could I modify in order to make this price changing depending on the Invoice address ? Inside administration, I didn't see this possibility so I guess I must change directly on files...but where?? Thanks in advance !
- 4 replies
-
- specific price
- product price
-
(and 1 more)
Tagged with:
-
I have create a shop in prestashop 1.6.1.2. I want to set different prices for different currency. My shop is in two currencies, CHF and EURO. The default currency exchange rate will not work because i have to add some other expences. Is there any way to do it?
- 4 replies
-
- Product price
- Multiple price
-
(and 2 more)
Tagged with:
-
Hello, I have just joined this forum with the hope someone out there can help me resolve the following pricing issues I have: In the back office for example a products base price is set £125 excl tax and £150 incl 20% tax which correct and this shows in the shopping cart, I have noticed there is a major error: On the general product list in the back office it states £125 base price and £135 for the final price which is wrong and this final price (£135) is shown on the live product page in the front end. Does anyone know which files I need to fix/upload so I can fix these price display problems. My site thomasnayler.com is in maintenance mode so I will need your IP address before you can see the problems on the site. I have attached a screen shot to demonstrate the issue. Kind regards, Thomas
-
I am using presta 1.6 and I have selected to hide the vat from all group users. But I want one exception. I want in the product template file to show both prices with and without vat. I have the price without vat already and I am OK with that. From the other side what script can I use to show the price included vat ? Regards
- 1 reply
-
- price with vat
- Product vat excluded
-
(and 4 more)
Tagged with:
-
Hi It will be appreciated if someone can help me I got a problem for price on product page -Tax is excluded -for example my base price is $5.99 and I select $1.00 as an discount amount on: product/price/new specific price the result will show $5.11 insisted of $4.99 . everything is OK when I go with percentage discount but not with amount My Prestashop is 1.5.3.1 Thanks
- 11 replies
-
- specific price
- product price
-
(and 1 more)
Tagged with:
-
Hello, our country is moving from local currency to euro and now we need to write product prices in two currencies. Is there any easy way to do that in prestashop? I need our current curency to be as it is and euro to be in a smaller font. Thank you in advance!
-
Hello I have installed new theme - vp_handbag and it gives me some issues. The price on the product page is always showing 0,00 although I have all prices assigned and visible in the cart and featured products. glovii.com
- 4 replies
-
- vp_handbag
- prices
-
(and 3 more)
Tagged with:
-
how to display final price without tax in prestashop admin panel "Catalog=>Produts" page ? I configured base price as zero for few products and configured its price via attributes. In admin panel its showing zero as base price and final price with tax. I want to remove the tax added in the final price.(I want tax should be enabled, but don't want to display in page- see image). I verified in admincontrollers.php file, but couldn't find where to change.can anyone help me please.
-
- exclude tax
- product price
-
(and 1 more)
Tagged with: