danbru
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsAny more help with this?
Forum: Fixing WordPress
In reply to: Restoring Default Publishing WorkflowThank you, nuggetsol. I will keep your plugin in mind if I need it for a future project. We don’t really need a custom workflow at this time, so I’m just trying to restore.
Yes, I am using a user controller – Advanced Access Manager. But when I check all the setting there, everything looks right. Editors have the capability to Publish Posts. It doesn’t seem like the problem is there.
Forum: Fixing WordPress
In reply to: Restoring Default Publishing WorkflowI deactivated the plugin and deleted – Clicking “Yes, Remove all files…”
Also checked my file structure and database for any leftovers.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsAlso, there is no way (that I know of) to check Mailchimp for errors when the campaign loads.
For Example:
This category feeds works: https://www.fbcmountjoy.org/events/categories/general/teens/feed/The main events feeds does not: https://www.fbcmountjoy.org/events/feed/
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsMailChimp is not really the issue at this point. Category feeds work fine there.
The primary issue is that the main feed will not load unless permalinks are set to default.
However, the category feeds are working fine regardless of permalinks.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsThe site has been published since this thread began. It is now located at fbcmountjoy.org.
The events feed url: https://www.fbcmountjoy.org/events/feed/
The feed validates at Feed Validator only when permalinks are set to default.
Last time I tried it, even with permalinks on default, Mailchimp was unable to load the main events feed, though it is loading category feeds fine.
How can I get the main events feed to work?
Thanks!
I really appreciate your help!
Thank you for your time! That works!
Need this for locations too, so I changed all the “event”‘s to “location” and it’s not working for locations. Could you help there too?
/* ========== EVENTS MANAGER – CUSTOM CODE ========== */ function em_event_output_condition_filter($replacement, $condition, $match, $EM_Event) { // Checks for Event {has_notes} conditional if (is_object($EM_Event) && preg_match('/^has_(notes)$/', $condition, $matches)) { if (isset($EM_Event->$matches[1]) && !empty($EM_Event->$matches[1])) { $replacement = preg_replace("/\{\/?$condition\}/", '', $match); } else { $replacement = ''; } } // Checks for Event {no_notes} conditional if (is_object($EM_Event) && preg_match('/^no_(notes)$/', $condition, $matches)) { if (!isset($EM_Event->$matches[1]) || empty($EM_Event->$matches[1])) { $replacement = preg_replace("/\{\/?$condition\}/", '', $match); } else { $replacement = ''; } } return $replacement; } add_filter('em_event_output_condition', 'em_event_output_condition_filter', 1, 4); function em_location_output_condition_filter($replacement, $condition, $match, $EM_Location) { // Checks for Location {has_notes} conditional if (is_object($EM_Location) && preg_match('/^has_(notes)$/', $condition, $matches)) { if (isset($EM_Location->$matches[1]) && !empty($EM_Location->$matches[1])) { $replacement = preg_replace("/\{\/?$condition\}/", '', $match); } else { $replacement = ''; } } // Checks for Location {no_notes} conditional if (is_object($EM_Location) && preg_match('/^no_(notes)$/', $condition, $matches)) { if (!isset($EM_Location->$matches[1]) || empty($EM_Location->$matches[1])) { $replacement = preg_replace("/\{\/?$condition\}/", '', $match); } else { $replacement = ''; } } return $replacement; } add_filter('em_location_output_condition', 'em_location_output_condition_filter', 1, 4);
Yup, looks like a theme problem… comments worked with TwentyFifteen.
Take this to Headway support and ask them about comments on custom post types?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsLatest of both.
The fact that I am running the site on a subdomain effect anything?
Any more thoughts on this?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsAny more thoughts on this?
I don’t have your answer, but I know what you are talking about.
There is another events plugin with simple conditionals built right into it.
Such as, {if_ATT = is BLANK}do this{/if ATT = is BLANK} or {if_ATT = is ATT}do this{/if_ATT = is ATT}.
It would be amazing if EM had this capability. The possibilities become endless.
This allowed me to do some cool things with the other plugin. For example – I had an event show only if there was an event of a certain type scheduled the previous week. It was all possible with their simple conditionals.
Didn’t mean to hijack your thread, but maybe this will attract some attention. ??
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] RSS Feed ProblemsI disabled all plugins except EM and switched to Twenty Fifteen. I then selected default permalinks and saved the setting.
https://fbcmountjoy.brutech.net?post_type=event&feed=rss2
Chrome loaded the feed xml fine, but MailChimp still failed to display the feed in a campaign. (All my MC code is correct and I have feeds – even EM category feeds working there.)
If I enable pretty permalinks again, Chrome then fails to load the xml.