I am reaching out regarding an issue I’ve encountered with virtual events in your plugin. Currently, when I create a virtual event, users are unable to use the RSVP button once the event has already started. I believe it would be very useful if users could still RSVP and join the event even after it has begun.
Would it be possible to enable this feature in a future update, or is there a setting I might have overlooked to allow this functionality?
Thank you for your time and for creating such a great tool. I look forward to your response!
it works very well thanks a lot !!! but there a problem with the onclick button on "copylink" still conserve the "original" link when i tryed to paste and not the modified one... i tryed to change the navigator.clipboard.readText inside the object of copylink but there is an error of security... is there another way to change that inside your code ?
No, that's overkill. You'll need to find a way to access the toaster to display the success message. It's not worth the effort, and this was a bug anyway. It will be fixed soon.
Feedback on "Allow RSVP after the event has already started" Feature
Dear Zhivko,
First, I would like to thank you for adding the "Allow RSVP after the event has already started" option. This feature is a great addition and very helpful in managing participation.
However, I have noticed an issue: the feature currently works only when the RSVP schedule is set, but it does not function when the RSVP is not planned or scheduled. It would be extremely useful if the option to allow RSVP after the event starts could also work without scheduling the RSVP in advance.
Thank you for your continuous improvements to the plugin. I hope this issue can be addressed soon, as it would make the feature even more versatile.
Dear developper of Stachethemes Calendar Team,
I hope this message finds you well.
I am reaching out regarding an issue I’ve encountered with virtual events in your plugin. Currently, when I create a virtual event, users are unable to use the RSVP button once the event has already started. I believe it would be very useful if users could still RSVP and join the event even after it has begun.
Would it be possible to enable this feature in a future update, or is there a setting I might have overlooked to allow this functionality?
Thank you for your time and for creating such a great tool. I look forward to your response!
Best regards,
Arnaud
Hi,
Sure, I will see if I can add this feature this week.
Stachethemes Developer
Thanks, it will be great !!
I have a new question, tell me if i have to create a new ticket or not...
i use referal for sharing links how to add the username after all url shared by facebook, whatsapp etc... ?
is there a hook i can use ? or a js ?
best regards
Sure, you can use javascript filter for this.
Example:
Stachethemes Developer
it works very well thanks a lot !!!
but there a problem with the onclick button on "copylink" still conserve the "original" link when i tryed to paste and not the modified one... i tryed to change the navigator.clipboard.readText inside the object of copylink but there is an error of security... is there another way to change that inside your code ?
Are you talking about this button
Stachethemes Developer
Yes... I just noticed what I did there... I will fix this with 5.3.9 this week.
If you are in a hurry you can edit the file assets/js/5784-lazy.js
This line
should be modified to:
Stachethemes Developer
yes it's that and in your code you use the navigator.clipboard.writeText 4 times :
navigator.clipboard.writeText(e.url)
navigator.clipboard.writeText(e.location.address)
navigator.clipboard.writeText(b)
navigator.clipboard.writeText(t)
i replace the last one with your new code and it's works very well
you are great !!!
thank ;)
i was working on it with this dummy code !!! and lose my hair ;) :
const observer = new MutationObserver(() => {
const link = document.querySelector('.stec-share-copylink-color');
if (link && !link.dataset.initialized) {
link.dataset.initialized = true;
const newLink = link.cloneNode(true);
link.parentNode.replaceChild(newLink, link);
newLink.addEventListener('click', event => {
event.preventDefault();
event.stopPropagation();
try {
const updatedUrl = newLink.getAttribute('href') || newLink.dataset.url;
if (!updatedUrl) {
return;
}
const tempInput = document.createElement('textarea');
tempInput.style.position = 'absolute';
tempInput.style.left = '-9999px';
tempInput.value = updatedUrl;
document.body.appendChild(tempInput);
tempInput.select();
document.execCommand('copy');
document.body.removeChild(tempInput);
} catch (err) {}
});
}
});
observer.observe(document.body, { childList: true, subtree: true });
No, that's overkill. You'll need to find a way to access the toaster to display the success message. It's not worth the effort, and this was a bug anyway. It will be fixed soon.
Stachethemes Developer
Yes you are absolutely right thank you again! You are doing a very good job
Just to let you know 5.3.9 will be available for download later today.
It will include the RSVP feature you requested.
Stachethemes Developer
thanks again !!!
Is it possible to add linkedin in the shared buttons please ? a lot of my users have account on that professionnal network ;)
That's not a bad idea.
You can do it now with the filter:
And the css:
Stachethemes Developer
very clever solution !!! thanks a lot !
You're welcome!
Stachethemes Developer
Feedback on "Allow RSVP after the event has already started" Feature
Dear Zhivko,
First, I would like to thank you for adding the "Allow RSVP after the event has already started" option. This feature is a great addition and very helpful in managing participation.
However, I have noticed an issue: the feature currently works only when the RSVP schedule is set, but it does not function when the RSVP is not planned or scheduled. It would be extremely useful if the option to allow RSVP after the event starts could also work without scheduling the RSVP in advance.
Thank you for your continuous improvements to the plugin. I hope this issue can be addressed soon, as it would make the feature even more versatile.
Best regards,
Arnaud
here it is : https://my.bizes.xyz/rendez-vous/bizes-keys-samedi-10h30-11h30/2024-12-21T10:30/?abc=Amba
but it's in french ;)