manakuke
Forum Replies Created
-
Thank you. I think that was the problem. I had the incorrect attribute in the “CAS attribute containing email” due to the change in CAS service. Thanks for your response and great plugin.
We’re having a similar issue. Working fine for months, no changes to system. Our event feed comes from Salesforce. It seems perhaps related to this previous post:
https://www.ads-software.com/support/topic/import-feeds-stopped-working/Here’s sample code from our Salesforce ics feed that imports into the Timely calendar:
BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN VERSION:2.0 METHOD:PUBLISH TZID:America/New_York BEGIN:VEVENT SUMMARY:Event Title LOCATION:Venue Name @ 123 St Address, City, ST DESCRIPTION:Event details and descriptions. Can have HTML. CATEGORIES:Reception X-TAGS:ST DTSTART:20190716T170000 DTEND:20190716T190000 DTSTAMP:20190605T131608 CLASS:PUBLIC UID:a0sf40000024VIoAAM URL:https://yoursite.force.com/connect/evt__QuickEvent?id=salesforce_event_id END:VEVENT END:VCALENDAR
Note, we have the event state customized to come in as a tag so that we can filter events by state.
Adding the file seems to work. Thanks. Luckily for us, we use a custom CSS file instead of the Calendar Theme Options. Makes sense it would reset. Seems like the updated version is pulling/updating that file instead of however it was updating before.
I guess the VERSION 2.5.38 “Fixed: Invalid file location for the current theme options would throw HTTP 500 error on specific server environments.” is what triggered the need for the file inclusion. Would recommend that the plugin authors clarify as @bluantinoo noted it now requires calendar theme designers to include said file.
Update, 2.5.37 is working for me, but not 2.5.38 nor 2.5.40.
I am having the exact same issue. Had to revert to 2.5.32 as well. Tried 2.5.38 and 2.5.40 with no luck. Haven’t tried any other versions between 2.5.32 and 2.5.38. I’m also using a customized theme. I can send customized theme via email if that would help.
Forum: Plugins
In reply to: [Admin CSS MU] No Access Under Appearance on Sub-SitesOk. Thanks for the clarification ??
To clarify, it is preventing the Time.ly plugin admin tools from. For example, adding or refreshing feed imports, updating styles, adding/updating, or using the Widget Creator. Also, external sites using the Widget Creator no longer show any events.
Forum: Plugins
In reply to: [List category posts] Disable Thumbnail LinkThanks!
Forum: Plugins
In reply to: [List category posts] Disable Thumbnail LinkI appreciate you looking into this. As a future feature for the short code, it would be super helpful (to avoid needing to use the template or edit your core code).
The work around that I’ve tried and seems to work was that in a custom template, I switched:
$lcp_display_output .= $this->get_thumbnail($post);
For
$lcp_display_output .= get_the_post_thumbnail( $_post->ID, 'stafflist-thumb', ['class' => 'board-thumbnail', 'title' => 'Staff Photo - '.$this->get_post_title($post) ] );
Forum: Plugins
In reply to: [Better Search Replace] BSR Not Appearing Under Tools in Multisite InstallBummer. Sounds like a limitation beyond what I have any guesses. We installed WordPress on our own servers and have control over pretty much everything. Maybe there’s a host limitation or something. Probably best to (hopefully) get help from the plugin author.
Forum: Plugins
In reply to: [Better Search Replace] BSR Not Appearing Under Tools in Multisite InstallNope. /wp-admin/ only. You should find it under Tools under the main site’s dashboard. Example:
https://www.example.com/wp-admin/
Not:
https://www.example/sub-site/wp-admin/
nor
Forum: Plugins
In reply to: [Better Search Replace] BSR Not Appearing Under Tools in Multisite InstallHave you tried the root site admin menu? That’s where I found mine.
Forum: Plugins
In reply to: [Make Paths Relative] Multisites?Worked for me with the following notes.
- Site Address had the be set to “home_url()”
- You have to activate settings on each individual sub-site. Would be ideal to have a network setting option to apply to all sites (we have hundreds).
Forum: Plugins
In reply to: [Frontend Checklist] Change checkbox & reset buttonAny chance of sharing your coded solution and/or adding this as a feature option for the plugin? Or just a way on the back end to clear all the checked boxes? We reuse a check list ever semester and need a way either for the end user to reset, or for use to reset everyone.
- This reply was modified 6 years, 11 months ago by manakuke. Reason: Additional clarifying question