• Resolved afacciponti

    (@afacciponti)


    Hi, on the Poll and Quiz you are able to add pictures that can be selected as part of answering the poll or quiz.

    Is it possible to add this ability to the main form creation as well. For example if I created a form that requested a user to choose from a selection of images instead of just words. For example instead of asking what type of logo would you like text only, image only or text and image I could represent these choices with a images they could choose. The same for multiple choice question/options.

    Is this something to be implemented or possible to do in the existing form?

    Thank you for you help in advance.

    • This topic was modified 4 years, 9 months ago by afacciponti.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi @afacciponti,

    There’s no option to add images at the moment but it could be an interesting addition, I’ve passed it over to our devs and we’ve added it on to-do list for future improvements ??

    Cheers,
    Predrag

    Thread Starter afacciponti

    (@afacciponti)

    Thank you for your response, I have been holding out for this feature since you first released v1.

    I guess im going have to spend some money on one of your competitors for a year ?? until you integrate the ability to add images.

    Would it not be possible to enable or implement adding CSS or HTML to a radio or selection button.

    Thanks again for escalating this addition.

    Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @afacciponti

    We already have this feature on the future features list so I believe it will be added but I don’t have an ETA.

    However, it would be possible to use CSS to add such images. For example:

    – I have added class “radio-image” to the “radio” field on my form (in “styling” setings)

    – and then added this CSS to the site

    .radio-image .forminator-radio:nth-of-type(2) span:before {
    	content:'test';
    	display:block;
    	width:200px;
    	height:200px;
    	background:url('YOUR_IMAGE_URL');
    	background-position:center;
    	background-size:cover;
    	
    }

    What it does is it adds a 200×200 pixels image to the first option (note the number for “nth-of-type” – first option is 2, second option is 3 and so on).

    It has some downsides such as that if you want to change image, you need to chane it in CSS and the image itself is not included in submission (so it won’t show up in submissions on site and won’t come in e-mails) but it’s a workable workaround for now, until the proper option is implemented.

    Best regards,
    Adam

    Hello @afacciponti

    I hope you are doing well!

    We haven’t heard back from you for a while now so we’ve marked this ticket as resolved. If you do have any followup questions or require further assistance feel free to reopen it and let us know here.

    Kind regards,
    Nastia

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Multiple choice by images selection in form creator’ is closed to new replies.