Magento 2: Custom Options - info between?Static text blocks between simple product's custom optionsCustom options across sitescustom option validationMagento 1.9 product view custom options as accordionCustom Option text field value from order idCustom Products - Big Options - Multi page sequence problemIs it possible for a global product to have store dependent custom options?Magento : How to Customize Product Custom Optionshow many custom options a product can haveSetting a custom product option for a simple product in the cart
What does grep -v "grep" mean and do?
Why was Mal so quick to drop Bester in favour of Kaylee?
Getting geometries of hurricane's 'cone of uncertainty' using shapely?
Can a Federation colony become a member world?
How to fix a dry solder pin in BGA package?
Which resurrection spells are valid to use with the Zealot's 'Warrior of the Gods' Feature?
How can a valley surrounded by mountains be fertile and rainy?
Is there any problem with this camera not having a lens cover?
Generate and graph the Recamán Sequence
Why are 120 V general receptacle circuits limited to 20 A?
Golf the smallest circle!
Why agni is known as jaatavedas?
Why does a brace command group need spaces after the opening brace in POSIX Shell Grammar?
How did installing this RPM create a file?
Is it bad to describe a character long after their introduction?
Is there a way for presidents to legally extend their terms beyond the maximum of four years?
Can a US President have someone sent to prison?
Did Wakanda officially get the stuff out of Bucky's head?
Can a police officer film me on their personal device in my own home?
Are there any features that help with the roll to avoid the destruction of a Wand of Fireballs when using the last charge?
How can my story take place on Earth without referring to our existing cities and countries?
What is the name of this OOB notification method/popup, and is it customizable?
Most importants new papers in computational complexity
Can I ask to speak to my future colleagues before accepting an offer?
Magento 2: Custom Options - info between?
Static text blocks between simple product's custom optionsCustom options across sitescustom option validationMagento 1.9 product view custom options as accordionCustom Option text field value from order idCustom Products - Big Options - Multi page sequence problemIs it possible for a global product to have store dependent custom options?Magento : How to Customize Product Custom Optionshow many custom options a product can haveSetting a custom product option for a simple product in the cart
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is there a way for me to place text between the custom options on my product page? I'd like to separate each option (size, message, text field) with some information relating to the option beneath each piece of information.
magento2 product custom-options
add a comment |
Is there a way for me to place text between the custom options on my product page? I'd like to separate each option (size, message, text field) with some information relating to the option beneath each piece of information.
magento2 product custom-options
add a comment |
Is there a way for me to place text between the custom options on my product page? I'd like to separate each option (size, message, text field) with some information relating to the option beneath each piece of information.
magento2 product custom-options
Is there a way for me to place text between the custom options on my product page? I'd like to separate each option (size, message, text field) with some information relating to the option beneath each piece of information.
magento2 product custom-options
magento2 product custom-options
asked Apr 20 '16 at 12:36
MikeMasonMikeMason
7122 gold badges13 silver badges36 bronze badges
7122 gold badges13 silver badges36 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
This can be done in two ways:
Editing the templates of Magento_Catalog module (module-catalog/view/frontend/templates/product/view/options/type/select.phtml etc.)
Or creating a module that will add this functionality to Magento2.
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
add a comment |
You need to override below files to change in product custom option (base on your option type):
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypeselect.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypedate.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypefile.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypetext.phtml
You can override this by two way:
1) Copy this file to your custom theme (with same file path).
2) Copy this file and catalog_product_view.xml to your new extension.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f111759%2fmagento-2-custom-options-info-between%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This can be done in two ways:
Editing the templates of Magento_Catalog module (module-catalog/view/frontend/templates/product/view/options/type/select.phtml etc.)
Or creating a module that will add this functionality to Magento2.
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
add a comment |
This can be done in two ways:
Editing the templates of Magento_Catalog module (module-catalog/view/frontend/templates/product/view/options/type/select.phtml etc.)
Or creating a module that will add this functionality to Magento2.
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
add a comment |
This can be done in two ways:
Editing the templates of Magento_Catalog module (module-catalog/view/frontend/templates/product/view/options/type/select.phtml etc.)
Or creating a module that will add this functionality to Magento2.
This can be done in two ways:
Editing the templates of Magento_Catalog module (module-catalog/view/frontend/templates/product/view/options/type/select.phtml etc.)
Or creating a module that will add this functionality to Magento2.
answered Apr 20 '16 at 14:53
DanilDanil
3212 silver badges4 bronze badges
3212 silver badges4 bronze badges
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
add a comment |
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
Any free extension for custom options
– MagikVishal
Aug 23 '16 at 13:41
add a comment |
You need to override below files to change in product custom option (base on your option type):
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypeselect.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypedate.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypefile.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypetext.phtml
You can override this by two way:
1) Copy this file to your custom theme (with same file path).
2) Copy this file and catalog_product_view.xml to your new extension.
add a comment |
You need to override below files to change in product custom option (base on your option type):
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypeselect.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypedate.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypefile.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypetext.phtml
You can override this by two way:
1) Copy this file to your custom theme (with same file path).
2) Copy this file and catalog_product_view.xml to your new extension.
add a comment |
You need to override below files to change in product custom option (base on your option type):
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypeselect.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypedate.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypefile.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypetext.phtml
You can override this by two way:
1) Copy this file to your custom theme (with same file path).
2) Copy this file and catalog_product_view.xml to your new extension.
You need to override below files to change in product custom option (base on your option type):
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypeselect.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypedate.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypefile.phtml
magento2vendormagentomodule-catalogviewfrontendtemplatesproductviewoptionstypetext.phtml
You can override this by two way:
1) Copy this file to your custom theme (with same file path).
2) Copy this file and catalog_product_view.xml to your new extension.
answered Apr 21 '16 at 6:28
NitsNits
1,2714 silver badges17 bronze badges
1,2714 silver badges17 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f111759%2fmagento-2-custom-options-info-between%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown