Support Z Weather

Home Forum
Welcome, Guest
Please Login or Register.    Lost Password?

Send email to RSVP list not showing up?
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Send email to RSVP list not showing up?
#1214
Send email to RSVP list not showing up? 1 Year, 9 Months ago Karma: 1
I thought the capability to send emails to the users on the RSVP list existed, but it's not showing up. I was able to hack the PHP code to force it to show by lessening the requirements to display, but it apparently doesn't work or at least the email hasn't gone out What's going on with this function? I really need it.
palex481
Fresh Boarder
Posts: 12
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#1215
Re: Send email to RSVP list not showing up? 1 Year, 9 Months ago Karma: 1
Scratch that, it works. Still had to hack the code though to make the only requirement that I was event owner. There was another requirement that was causing it not to display.
palex481
Fresh Boarder
Posts: 12
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#1226
Re: Send email to RSVP list not showing up? 1 Year, 9 Months ago Karma: 12
Let me know what you changed and I will see if I can include it in the main release of the plugin.
cogliano
Moderator
Posts: 1078
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#1229
Re: Send email to RSVP list not showing up? 1 Year, 9 Months ago Karma: 1
Well all I changed was the allow statement:

Original:
$allow = $allowemail > 0 && $my->id > 0 && ($event->created_by == $my->id ||$my->authorize('com_zcalendar_event','manage'));


My change:
$allow = $my->id > 0 && ($event->created_by == $my->id ||
$my->authorize('com_zcalendar_event','manage'));
}
return $allow;

It's like it was looking for an allowemail parameter to be set true, but I never saw a setting for it. I figured my modified allow statement matched the export list allow statement so it would be alright.

And it does show up, and it does work sort of. The cursor position is all crazy.

I mean I'm happy to help you here, but it would be a different situation had I not paid for the pro version specifically for the RSVP plugin. I just don't feel I should have to fix these kind of things if you are going to charge that amount of money you know?

I'm trying to roll out my site within a month or so and I really don't want end users to have to see these bugs.
palex481
Fresh Boarder
Posts: 12
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#1232
Re: Send email to RSVP list not showing up? 1 Year, 9 Months ago Karma: 12
The allowemail option is a setting in the calendar view. Set it there under the plugin tab to enable or disable the ability to send e-mails to RSVP users. Since it is not a bug, I am going to leave the code as is for now.
cogliano
Moderator
Posts: 1078
graph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#1233
Re: Send email to RSVP list not showing up? 1 Year, 9 Months ago Karma: 1
I may be wrong, but I swear I had that enabled before. I'll try again. At the very least the cursor does do some strange stuff, however when you type the email.
palex481
Fresh Boarder
Posts: 12
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 12