Marian Jubany
- Actividad total 1040
- Última actividad
- Miembro desde
- Siguiendo 0 usuarios
- Lo siguen 5 usuarios
- Votos 1
- Suscripciones 626
Publicaciones
Actividad reciente de Marian Jubany Ordenar por actividad reciente-
Validate DNI (Spanish identity document)
The following regular expression can be used to validate that users input a valid DNI value with the structure of 8 numbers + 1 letter (example: 12345678R): ^(\d{8}[a-zA-Z]{1})$ The following regul...
-
Validate values with one or two letters + 6 digits
The following regular expression can be used to validate values that start with one or two letters plus 6 digits: ^[A-Z]{1,2}[0-9]{6}$
-
Validate values with a specific number of digits
The following regular expression will allow to validate values with a specific number of values. The particular example below allows to validate 6-digit values: ^([0-9]{6}$ This way, only digits fr...
-
Increase the size of the code displayed in the winner pop-up
Below we show an example of how the promotional code is displayed on the "Winners pop-up": If needed, the size of the code can be increased by applying the following CSS code: .prize_content .code...
-
Hide the "Share" button on the Final page
By default, all promotions include a 'Share' button on the final page, allowing users to easily share the promotion with their friends and contacts: However, if needed, this button can be hidden u...
-
Hide the "View prize:XXX" link onf the final page
By default, when a user wins a direct prize after participating, the Final page shows the "View prize" link, which opens a pop-up with the information of the prize: However, this link can be hidde...
-
Hide the "Enter again" link onf the final page
If the promotion is set up to allow multiple participations, on the Final page the "Enter again" link is displayed: If needed, this link can be hidden by applying the following CSS code: .success_...
-
Hide the “Score” column that appears on the “My participation” page
By default, the "My Participation" page displays a summary of a user's entries. For games, it also includes the scores achieved in each participation: However, if needed it is possible to hide thi...
-
Increase the size of the texts in the footer of the promotion
Below we show an example of how the Legal texts are displayed by default on the footer of a promotion: If needed, the size of the text can be increased by applying the following CSS code: .legal...
-
Hide the Correct/Incorrect text that appears by default in the feedback messages of the quiz
.gui_feedback .result { display:none !important;} Add the code in Editor > General > Design > Advanced > CSS styles field: