Het zou geweldig zijn als mensen die zich aanmelden voor evenementen op de een of andere manier konden aangeven of ze persoonlijk aanwezig zijn of via Zoom deelnemen.
Onze bijeenkomsten trekken tot 40 mensen persoonlijk aan, en mensen kunnen ook via Zoom deelnemen.
Het is erg belangrijk om een schatting te hebben van het aantal fysieke deelnemers om van tevoren aan de bibliotheek of een andere locatie door te geven (dit zijn lezing-achtige evenementen). Momenteel is er op Discourse geen manier om te weten hoeveel mensen van plan zijn om persoonlijk deel te nemen versus op afstand via Zoom.
Eén manier zou zijn om een optioneel vinkje te hebben “Aanwezigheid ter plaatse aangeven”.
Een andere manier zou zijn om optionele knoppen te hebben “Aanwezig ter plaatse” en “Aanwezig op afstand”.
Nu kunt u al de tekst van de knoppen voor evenementdeelname in Instellingen bewerken. De momenteel beschikbare keuzes van labels zijn echter beperkt tot vertalingen in andere talen van “gaat”, “geïnteresseerd”, enz. Het zou dus mogelijk kunnen zijn om de set van beschikbare keuzes relatief eenvoudig uit te breiden door gebruik te maken van deze code.
Ik heb geprobeerd twee evenementen te maken, maar sommigen vonden het verwarrend en kozen gewoon willekeurig. Bovendien kun je niet twee evenementen in één bericht hebben, dus ik moest de evenementen elders plaatsen en er links naar hebben in het hoofdbericht, wat niet zo overzichtelijk was.
Heel erg bedankt voor uw overweging en voor Discourse!
Hi,
CSS solution below but please note that :
-You will not be able to use the event channel features with it for users who pick the “interested” category
-If notifications/updates from the event topic are important, then please check how different the notifications are for the “interested” status and for the “going status” (like will users receive event updates, confirmation email?)
1° Right click on your page and select inspect to check your topics category css class as you only want to apply this “hack” to specific categories
2° Add this to your theme css(admin>appearance>theme>active>edit css), the class must start with the .css class found above; here “category-events”
.category-events.btn.btn-icon-text.interested-button .d-button-label {
display: none !important;
}
.category-events.btn.btn-icon-text.interested-button::after {
content: 'Conf call participation';
}
3° View the participants who selected this second option from the … menu of the event “show participants”
What’s cool is that you can do this for the going and not going buttons also as they also have their own css class(thank you discourse devs !)
My biggest wish right now would be an option to limit the number of participants for events and a waiting list that sends a message to say that participation is confirmed when a spot gets freed.
2 likes
Oh, ik vind het geweldig - dat kan ik zeker gebruiken.
Bedankt!
1 like
And for events categories where you are not using this participation button feature you can use this to limit the number of participants(you can also adapt it to fit your use with modification of the participation button but you need to adapt the code a bit then.)