
Marian Jubany
- Actividad total 935
- Última actividad
- Miembro desde
- Siguiendo 0 usuarios
- Lo siguen 1 usuario
- Votos 1
- Suscripciones 571
Publicaciones
Actividad reciente de Marian Jubany Ordenar por actividad reciente-
Change the color links of the "Terms and conditions" and "Privacy policy" on the registration form page
This can be accomplished by following 2 steps: 1. Add the following code in Editor > General > Design > Advanced > CSS styles field: .field_UserToc, .field_UserPolicy { --main-color:0, 0, 0; } You...
-
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 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...
-
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}$
-
Hide the "First name" and "Last name" fields on the Registration form (for "Classic" promotions only)
This can be accomplished by following 2 steps: 1. Add the following code in Editor > General > Design > Advanced > CSS styles field: .gui_form .tabled_name { display:none !important; } 2. Add the...
-
Increase the size of the code displayed in the winner pop-up
.prize_content .code { font-size:1.3em !important; } Add the code in Editor > General > Design > Advanced > CSS styles field:
-
Hide the "Share" button on the Final page
.success_status .share_btn {display:none !important;} Add the code in Editor > General > Design > Advanced > CSS styles field:
-
Hide the "My participation" section in the header of the promotion
.header_my_participation .user_main_info {display: none !important;} Add the code in Editor > General > Design > Advanced > CSS styles field:
-
Hide the "Go to home page" link onf the final page
.success_actions .home_btn { display:none !important;} Add the code in Editor > General > Design > Advanced > CSS styles field:
-
Hide the "View prize:XXX" link onf the final page
.success_actions .prizes_btn { display:none !important;} Add the code in Editor > General > Design > Advanced > CSS styles field: