
Marian Jubany
- Total activity 873
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 537
Activity overview
Latest activity by Marian Jubany-
Marian Jubany created an article,
2023-05-29 - New customization and management options for the design templates of your promotions
Last February, on the 20th, we applied an update in the platform that included a re-design of the administration panel. This update was the first phase of a strategic project, which aimed to increa...
-
Marian Jubany created an article,
Tutorial: How to manage your Design templates
The Design templates tool is an exclusive feature for customers with an active White Label or Corporate plan. This feature allows the account manager to customize the styles of a promotion and save...
-
Marian Jubany created a post,
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...
-
Marian Jubany created a post,
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...
-
Marian Jubany created a post,
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}$
-
Marian Jubany created a post,
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...
-
Marian Jubany created a post,
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...
-
Marian Jubany created a post,
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:
-
Marian Jubany created a post,
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:
-
Marian Jubany created a post,
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: