seannittner
Forum Replies Created
-
Forum: Plugins
In reply to: [User Specific Content] Custom roles stop working after update to 1.04Hi Decaf, I’ve checked and all my custom roles match the entry I have for User Specific Content, but still not working (went back to 1.0.1 as well). Did changing case work for you with 1.0.5, and if so, what change did you make?
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Sudden flood of tweetsThe tweets were all made using the WP to Twitter template, which nothing else uses, so I’m fairly confident the tweets originated from the plugin. Anything else I should look at?
Forum: Plugins
In reply to: [XPoster - Share to Bluesky and Mastodon] Sudden flood of tweetsMultiple posts were trashed but not edited. The option “Allow status updates from Quick Edit” is disabled. So I don’t think either of those were it.
Does the plugin feed off the RSS stream? I’m wondering if somehow that got garbled and then triggered the flood of tweets.
Sean
Forum: Plugins
In reply to: [GYS Themed Categories] Theme lost on comments pageMany thanks Luke. I’ve been trying to sort it out myself but can’t seem to decipher what WP is doing in the comments page. Anything you find would be great.
Forum: Plugins
In reply to: [GYS Themed Categories] Theme lost on comments pageAny thoughts on this?
Never mind, I tinkered around a bit and got it. Many thanks Marcus!
Perfect. That looks totally doable. I tend to get time formats mixed up. What PHP/WP/EM wants. Can you give me and example of how for instance January 15, 2012 would look for this syntax?
Thanks,
Sean
This temporary fix worked on my site. Any chance it will be cleaned up as of 5.3.4?
I’m getting the same error on my site. Any suggestions for a fix?
Hi Marcus,
Any thoughts on whether or not a wait list is in the future for EM? I’ve got lots of folks who are begging me for one.
Sean
Hi Luke. Thanks for the response. I tried the Page Theme plugin but it was extremely buggy and even when it said it applied a theme to a page (which was difficult) it would only apply themes, not child themes, which I need.
I was able to move all my content to posts (rather than pages) so the issue has been resolved that way. Thanks!
Sean
Hmm… I recreated the record (again) in v5 and it didn’t duplicate spaces. I couldn’t find the data in post_meta so I just deleted the troublesome entry. Hopefully it doesn’t come back when I duplicate it again next year.
Thanks agelonwl,
With just a minor tweak, it worked. Here was was the final code:
foreach($EM_Event->get_bookings() as $EM_Booking){ if (($EM_Booking->status)==1){ $people[$EM_Booking->person->ID] = $EM_Booking->person; } }Currently the file looks like:
<?php /* @var $EM_Event EM_Event */ $people = array(); foreach($EM_Event->get_bookings() as $EM_Booking){ $people[$EM_Booking->person->ID] = $EM_Booking->person; } ?> <?php foreach($people as $EM_Person): ?> <?php $user_info = get_userdata($EM_Person->ID); echo $user_info->first_name . " " . $user_info->last_name . "\n"; ?> <?php endforeach; ?>I’m thinking I should change this line to say “if booking_status=1” but I’m not sure how to do that:
foreach($EM_Event->get_bookings() as $EM_Booking)
Hi Marcus,
I’m digging up this old thread because I hired a developer to implement the changes you suggested. He’s done it and the fix works wonderfully, preventing users from booking two events at the same time.
Can I send you the code he wrote? Seeing as the work is already done, I think this could make a cool addition to the plugin.
Sean