Settings
Club Based Settings
Most of the settings for a club are managed in the Vinoshipper Producer Tools. This is located at each individual club's "Settings" tab and include allowing gift memberships, allowing pickups, and other settings.
The Club Registration form will automatically adapt to settings made on Vinoshipper without the need of modifying your website's code.
HTML Settings
The following settings can be set for each individual HTML code and are reactive.
data-vs-club-allow
data-vs-club-allow
Type: Numbers, separated by commas.
Example: 123,124,125
This will filter of available clubs for the form.
Providing one club number will lock the form to register for that single club. The user won't be able to select any other club from this form.
Providing more than one club will will narrow down the list of available clubs. The user will need to select a club, unless the data-vs-club-default
setting is provided.
Important: Clubs that are private or archived will never display in this form, even if the club ID is included in this setting.
Example
<!-- This will lock the form to only club #123. -->
<div class="vs-club-registration" data-vs-club-allow="123"></div>
<!-- This will lock the form to only clubs #123, #124, and #125 -->
<div class="vs-club-registration" data-vs-club-allow="123,124,125"></div>
data-vs-club-default
data-vs-club-default
Type: Number, optional.
Pre-selects a club as the default selection. If data-vs-club-allow
is also defined, the default club must be included in the list.
Example
<!-- This will pre-select club #123, but all public clubs are selectable. -->
<div class="vs-club-registration" data-vs-club-default="123"></div>
<!-- This will pre-select club #123 and clubs #123, #124, and #125 will be selectable. -->
<div class="vs-club-registration" data-vs-club-default="123" data-vs-club-allow="123,124,125"></div>
data-vs-club-headline
data-vs-club-headline
When defined, overwrites the headline of club signup.
If the value is defined as 0
, false
, or null
, then NO headline will show up on the club registration form.
Example
<!-- This will replace "Join the Club" to "Register for our Clubs!" -->
<div class="vs-club-registration" data-vs-club-headline="Register for our Clubs!"></div>
<!-- This will remove the "Join the Club" headline and no headline will display. -->
<div class="vs-club-registration" data-vs-club-headline="false"></div>
data-vs-theme
data-vs-theme
Type: String | undefined
Default: undefined
Overwrites the global theme setting for the particular component instance.
Updated 12 months ago