dflavin
Forum Replies Created
-
marcusr44 (@marcusr44),
were you able to work it out. I have the same issue.I found which plugin was causing the problem!
“Contact Form 7 Preview”
I deactivated all of the contact form 7 plugins that I had down loaded & the problem went away. I then activated them one at a time, checking if the conditional fields worked.Forum: Plugins
In reply to: [WP FullCalendar] Two CalendarsI would like to be able to have two calendars also.
Patrick,
Thank you. That fixed the issue.Sometimes you get tunnel vision.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Page URLI realize that it is not a safe solution. Currently if you go to an events page that is accepting reservation and are not signed in you are immediately redirected to the log-in page.
The site is not for the general public, there is NO payments for any of the members and other than email addresses and neighborhood that they live in there is no other information in the database.
Also the only log in page that is effected is the one created by events manager.
This is a special issue for a restricted site, with NO e-commerce and very little stored information of the users who all have the role of subscriber.
I realize and agree with your concerns.
Patrick,
I have looked through, where are the settings for ical?The eight week limit is all that the events.ics file sends, so I know the issue is not with Google.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Page URLI added two variables to the top of the login.php file.
example:
<?php
$bob = $_GET[‘bob’];
$tom = $_GET[‘tom’];
?>
then I modified the address for the event
https://yourwebsiteaddress.com/events/holiday-party/
to read:
https://yourwebsiteaddress.com/events/holiday-party/?bob=BillW&tom=xpcA135$$$bob is the username
tom is the passwordIn this way I can send an email that the user can automatically sign into the site automatically and book the number of tickets that they want.
Normally, I would not be passing this information around like this, but the users do not know their own passwords and all they can do is book an event. The events are for a specific community with several months of backups.
I should also mention that it is only displaying 8 weeks 9/29/2019 to 11/23/2019.
Yesterday it was displaying 9/28/2019 to 11/22/2019.Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Page URLPatrick,
I understand exactly what you are saying, also I understand that PHP is an executable coding language. What I am looking for is the name of the php file that is being called originally to create the html which is displayed.Thank you for your insight.