ktraving Posted April 10, 2015 Share Posted April 10, 2015 In certain situations it would be very helpful, if I could enter an extra text on my product attributes, that I can also hook/show on the product page, if that attribute is selected. An example: The customer chooses "silver" as a color for their poster. In this case, it is important for me to let the customer know, that since silver ink contains metal, it reflects light more than a non-metallic ink. Writing all that in the attribute name, would be silly, and writing it in the product description seems a bit excessive, as I dont even know what the customer chooses. Any ideas? Cheers, K Link to comment Share on other sites More sharing options...
sandipchandela Posted April 11, 2015 Share Posted April 11, 2015 As far as i can see that you are looking for attribute value description. If so then you need to do programming to override some values from attributes class if you have know. Link to comment Share on other sites More sharing options...
ktraving Posted April 13, 2015 Author Share Posted April 13, 2015 (edited) No know modules that will add this feature? To clarify what I am looking for: See this module page and its screenshots Unfortunately the homepage and the module seems pretty outdated. Edited April 13, 2015 by ktraving (see edit history) Link to comment Share on other sites More sharing options...
sandipchandela Posted April 13, 2015 Share Posted April 13, 2015 No know modules that will add this feature? To clarify what I am looking for: See this module page and its screenshots Unfortunately the homepage and the module seems pretty outdated. Screenshots in this modules are of PS version 1.4.. I got the idea what you are looking for. Let them ask for latest version if they are offering that module. Link to comment Share on other sites More sharing options...
ktraving Posted April 14, 2015 Author Share Posted April 14, 2015 I have dropped them a mail, asking if the module will be updated for 1.6.x, but I doubt I will get any reply. The webpage looks like they focus 100% on Magento now. Link to comment Share on other sites More sharing options...
sandipchandela Posted April 15, 2015 Share Posted April 15, 2015 Great to contact him. Also i have checked that they are mostly focusing on MAgento modules. Thanks Link to comment Share on other sites More sharing options...
ecentury Posted September 13, 2017 Share Posted September 13, 2017 You could use the hide / show use of css, by adding div elements directly into your product description like this <div class="attribute1">This is the description for attribute 1</div><div class="attribute2">This is the description for attribute 2</div> and then find out the value of the attribute and add some javascript like this $('.attribute_fieldset.quality select').on('change',function(){ if ($('.attribute_fieldset.quality select').val() == 59) { $('.attribute1').css({'display':'block'}); $('.attribute2').css({'display':'none'}); } else if ($('.attribute_fieldset.quality select').val() == 58) { $('.attribute1').css({'display':'none'}); $('.attribute2').css({'display':'block'}); } }); That will then only show the description of 1 attribute Regards David Link to comment Share on other sites More sharing options...
PatriceJV Posted January 3 Share Posted January 3 The solution is here with this module https://mypresta.eu/modules/front-office-features/product-combination-features.html Link to comment Share on other sites More sharing options...
JBW Posted January 3 Share Posted January 3 Please check my module "Attribute group and feature descriptions icon popover" Link to comment Share on other sites More sharing options...
c64girl Posted February 28 Share Posted February 28 On 1/3/2024 at 3:06 PM, PatriceJV said: The solution is here with this module https://mypresta.eu/modules/front-office-features/product-combination-features.html This guy is not responding to problems relented to products you buy. There is a post in polish forums. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now