Cleveland Heights-University Heights Public Library Webdeveloper
Forum Replies Created
-
Forum: Plugins
In reply to: [Book a Room] Events do not display on calendarUnfortunately, I’m writing this by myself, as well as testing, so there’s no real way to predict bugs or time frames.
Forum: Plugins
In reply to: [Book a Room] Events do not display on calendarI am currently testing an almost entire rewrite to make things compatible with i18n. This needs to come first since everything else needs to be built on the newer version. I’m testing now and fixing bugs before it can go live.
Forum: Plugins
In reply to: [Book a Room] a carbon copy of the confirmation emailIn the upcoming version that we are currently running at our own library, I’ve revamped how the mail works. There is now both a From name and email field, Reply-To name and email field, and a CC: and BCC: email field. It also uses wp_mail() now instead of the built in PHP mail(), which means if you use a WordPress SMTP plugin it will use that instead of the stock PHP method.
Once I feel it’s pretty bug free, I’ll add it to the repository. I am also putting up my latest test build on our Facebook page shortly if you’d like to test it.
Forum: Plugins
In reply to: [Book a Room] a carbon copy of the confirmation emailThis isn’t possible now, but a CC field added to is a great idea. I am currently revamping the way the emails are handled – I’m changing it to entering both From and Reply-To, so I can add CC and BCC while I’m in there.
This would be part of the 2.0 upgrade, or immediately after it. I’m testing 2.0 live on our own site as of yesterday. If it continues to work bug free I’ll make it live soon.
Forum: Plugins
In reply to: [Book a Room] Events do not display on calendarI will try and get a look at this when I have put out a few fires at the job.
Forum: Plugins
In reply to: [Book a Room] Events do not display on calendarYow!
Can you change line 54
if( !empty( $_GET["meetingID"] && empty( $canViewPublic ) ) ) {to
if( !empty( $_GET["meetingID"] ) && empty( $canViewPublic ) ) {Forum: Plugins
In reply to: [Book a Room] Changing the request formIn the version I am testing, this will be something that can be turned off by branch or sitewide.
Forum: Plugins
In reply to: [Book a Room] Changing the request formThat is strange and I’m not sure why it would do that, but there’s a lot going on so any editing of the forms can cause problems. If you restore the code to the original, do they still work?
Forum: Plugins
In reply to: [Book a Room] Events do not display on calendarDid you try the test version I made?
http://meetings.heightslibrary.org/wp-content/uploads/2017/05/book-a-room-event-calendar.zip
Forum: Plugins
In reply to: [Book a Room] Events do not display on calendar@linkshouse, can you be more specific on exactly what you are looking for or open a separate ticket, please?
Forum: Plugins
In reply to: [Book a Room] Changing the request formRemoving a whole error checking function is not going to go well.
You best bet is to leave it in and find the “required” bits.
For instance, the code to check for the contact address is:
if( empty( $externals['contactAddress1'] ) ):If you add false and, it should ignore it.
if( false and empty( $externals['contactAddress1'] ) ):I’m working on the i18n stuff at the moment (I found some huge bugs in testing) but I’ll be adding a lot of options when I get past that.
Forum: Plugins
In reply to: [Book a Room] Staff event notificationGreat!
Forum: Plugins
In reply to: [Book a Room] Change Text on the pageAt the moment, not without editing the template itself.
Forum: Plugins
In reply to: [Book a Room] Change Text on the pageHave you tried using the “Narrow” setting in the Meeting Room Settings -> Screen Width?
Forum: Plugins
In reply to: [Book a Room] Change Text on the pageIn the future, I will be adding more customization options.
For now, you can edit this template. I think this text that you want to change is located in in the publicShowRooms.html file found:
wp-content\plugins\book-a-room\templates\public\publicShowRooms.html