How i can Add TTC(including taxes) instead of HT(excluding taxes)
Screenshot
i use defaut theme in prestashop 1.6
Navigate to
Localization -> Taxes
and scroll down to Tax options section.
Activate Enable Tax and Display tax in the shopping cart options, if they are disabled. Save changes.
After that you need to configure a price display method for customer groups. Go to
Customers -> Groups
and click Edit on the group you want to modify.
Find Price display method option and select Price included. Save changes.
Related
I've created configurable product (internet connection with different speed) following docs, in storefront I see dropdown with product vairants, all is ok.
But in backoffice (when editing shoppingList or creating order) there is always only one variant of product with no ability to quickly select another option (eg change speed to another one) - is this how oro backoffice works and nothing could be changed to make backoffice user quickly navigate between product variants (eg change speed from 1M to 2M by clients phone request)?
Cant even edit product in shopping list
UPD:
If there's no way to see user-friendly configurable product in backoffice than I need to implement smth like button near each product in LineItem which will show popup with product variants. When user will select another option request will be sent to some route and it will run smth like $lineItem->setProduct($newProduct); , grid reloaded and new product variant selected. Is it ok or it will break something in oro?
Where to start for adding that button and popup? Eg I cant edit oro shopping list template, how to properly extend it?
On the line item editing form you cannot change the product, no matter it's configurable or simple. It's done intentionally.
If you want to change the product, you always can remove a line item and add the new one with updated options manually:
I need to be able to change the product price when a custom checkbox is selected. I want to add $10.00 for engraving on one product and $20 to other products for engraving. I can't add it as a variant in Shopify because they handle inventory based off variants. I am using the Debut theme. I have the custom checkbox working in liquid and the textbox show/hide functioning.
When someone checks the box for engraving, what they are doing is say, put a $10 product in my cart to go with this product. That $10 product is an engraving. You can use line item properties to glue the product with the engraving. When the customer clicks add to cart, you add both the product and the engraving to the cart, glued together with the line item properties. The reason? In the cart if they remove the product, you can also remove the engraving. Brilliant right! This pattern is common, and has been used to secure billions in sales... have fun!
In layered navigation block module of a Prestashop 1.6 store I have activated the price filter option and configured it to show prices with tax.
However, on the frontend the filter are using prices without tax, which results in showing products outside of the price range selected by user.
How can I fix that?
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..
You need to edit the product controller of prestashop admin
your-prestashop-site//controllers/admin/AdminProductsController.php
I'm using PrestaShop 1.5.5.0.
I want to add a custom check box list to the product page so a customer can choose shipping carrier on the product details page. Can it be possible ? I can add a specific fields in the product details page. As I'm new it's little difficult for me to figure out how can I add other details and carry the values to the order page and that is also dynamically. Is there any module available by which I can accomplish the task ? Please suggest me.
What I want to do is this : Choosing shipping carrier in product page :
http://www.wayfair.com/LifeStyle-Solutions-Zurich-Platform-Bed-LS3-ZUR-X-CP-LF1087.html
Well It's a tough task. You need to work on the controller if you want to carry the values or create a module like shipping estimate and hook it to the product page that might work.