Hi Kp,
It’s a good idea, so I’ll definitely bring it up to our development team.
Here’s a temporary workaround you can use:
1) Upload your images to the Media section in WordPress.
2) Find your image’s URL (you can find this info by clicking an image and copying what’s in the “URL” field on the right).
3) If you haven’t already, create a Custom Field. Give it a name (for example: “Allergy Warning”) and set the Type to “Short Text”. After you’re done, click “Add New Field” at the bottom.
4) Edit a product and scroll down to your “Allergy Warning” custom field section. Paste in the following HTML code, but replace the “https://….peanut.jpg” text with the URL of your image:
<img src="https://www.mywebsite.com/wp-content/uploads/2016/09/peanut.jpg" style="height:20px; width: auto;"/>
Note: I’ve also added in some inline styling to the above code so the image will appear as a small icon with a height of 20 pixels. To adjust the size of your image, just change the number ’20’ to whatever you prefer ??
-
This reply was modified 8 years ago by etoilewebdesign. Reason: needed to bold url example