Actions

QS

Hide tip: Difference between revisions

From LimeSurvey Manual

mNo edit summary
mNo edit summary
Line 16: Line 16:


<!--T:287-->
<!--T:287-->
The method used to hide tip is '''css only''', but you can choose another way to hide it. An example to show tip(s) and hits is if user submits with error:
The method used to hide tip is '''css only''', but you can choose another way to hide it. An example to show tips/hints is if user submits with error:


<!--T:288-->
<!--T:288-->

Revision as of 18:43, 16 February 2018


Hide tip (hide_tip)

Description

Most questions will usually include a tip that says "Please choose one of the following options" or a hint text on how to fill out the question. This attribute allows you to turn off this tips/hints.

These tips include the validation criteria messages (such as min/max number of answers, min/max/equals sum value). If hide_tip is enabled, these messages will be hidden. However, if the user enters invalid data, the tips will appear. They will be coloured in red, getting changed to green Once the validation criteria are met.

The method used to hide tip is css only, but you can choose another way to hide it. An example to show tips/hints is if user submits with error:

.hide-tip .good {display: none;}
.hide-tip .error {display: none;}
.input-error .hide-tip .error {display: block;}

Available options

  • On - the tips and hints are hidden;
  • Off (default).