Questions tagged [customizable-options]
The customizable-options tag has no summary.
39 questions
0 votes
1 answer
75 views
Magento 2 Cutomisable Option Price Issue when switch currency
It seems you've encountered an issue with Magento 2.4.5 and lower versions when dealing with currency conversion for customizable options. Here’s a clearer description of the steps and the problem: ...
0 votes
1 answer
131 views
magento 2.4 get item options default label
On my magento I have different store views and some simple products with customizable options. I also have some custom code that checks the label of these options: $myvalue = 0; $options = $item->...
0 votes
1 answer
78 views
How to replace the '+' prefix in customizable options value string
Anyone knows where this + prefix symbol in customizable options is coming from? I'd like to replace it with something like "for {price}". I searched all over Magento modules and couldn't ...
0 votes
1 answer
286 views
How to filter display of Customizable Options in Product admin grid?
In the admin grid form of Products, I need certain Customizable Options to not be displayed even if they are assigned to a Product. These Customizable Options will be displayed in a separate section ...
1 vote
0 answers
1k views
How to add custom option type in Customizable Options
How can i add custom option type in customizable options? Is there any free extension which added this option? I followed this link but i can not make it works....
0 votes
1 answer
465 views
Magento 2.3 - How set custom options title by store view programmatically?
I would like to be able to translate the title of the customizable options. The following code works correctly and adds the options in all store views. How to adapt it to have a translated title in ...
0 votes
1 answer
1k views
How to get custom option price in cart in Magento 2
I have some customizable options in my products. I would like the checkout/cart page to show the individual prices of each option and not just the total price. Unfortunately I am missing any approach. ...
0 votes
1 answer
86 views
Need to get Customizable option title & values from array in quote
From quote I got array of customizable option. How can I retrieve it's title & value $quote = $this->_cart->getQuote(); $cartAllItems = $quote->getAllItems(); foreach ($...