Why has this plugin not been updated in 2 years? There appear to be some issues using this on the latest WordPress platform and it would be great to not have to migrate to a new Event’s plugin.
]]>Hello Atte.
It looks like the admin panel for AM Events filters out events from the past. The screen shot I’ve taken shows a total count of nine events in the various categories (published, draft, private, etc) but none of those events are visible in the table. I’d like to be able to see past published and draft events in wp-admin. I took a quick look through the plugin code to see if I could identify a hook that was filtering out posts based on date so that I can override it in my functions file. I did not find anything at first glance though – the place I did identify did not seem to have any effect on the post visibility in the admin panel. Any suggestions?
Thank you in advance for your help!
]]>I’m developing a site locally and I see an error on some admin pages when WP_DEBUG is on:
Notice: Trying to get property of non-object in /Users/dev/sites/local.dev/wp-content/plugins/am-events/am-events.php on line 292
I made a quick fix to the plugin on my installation to prevent this notice appearing by changing the first few lines in the am_custom_script_post function:
original:
global $post;
if ($post->post_type !== 'am_event' || !is_admin()) {
return;
}
changed to:
global $pagenow;
global $post;
if ( !is_admin() || $pagenow !== 'post.php' || $post->post_type !== 'am_event' ) {
return;
}
]]>
I have installed this plugin on my site and it works great, but I do not want it to use my default Blog Archive.php page or Single.php pages. How can I create an override within my child-theme for just the Events? I followed this GitHub example, but it didn’t work on my theme: https://github.com/attemoi/am-events-child-theme/tree/master/twentytwelve-child
Any help is appreciated.
]]>Is there a way to display events posted to one version of the plugin to multiple websites? I have been very happily using this plugin for 3 years to post over 100 academic events. But seeing as these events are sponsored by multiple parties, we now have multiple users who would like to post the same events to their own word press sites. Is there any to input the form field just once and use it to populate multiple sites?
]]>I have a japanese website on which I am using the AM Events plugin. Because the site is for a Japanese audience, I’ve set a custom date format in the General settings for the site as Y年m月d日, which works great throughout the site for front-end presentation.
However, when using the calendar date picker on an AM Event in the dashboard, that custom format conflicts with the plugin and gets saved as “Jan 1, 1970” as a default date because the text inserted is not recognizable to the AM Event code. Is there any way to address this issue or are we just going to need to not use the calendar date picker?
Many thanks for a useful plugin!
]]>How can I assign a non-Admin to be able to create or edit events?
]]>i want to change category url also from am_event_categories to category
]]>i have changed events slug from am_event to events and after that i have saved permalinks also. but it was showing an error 404 in pages. please assist me.
]]>Hello,
First of all I want to thank you for an amazing event plug in. I have wasted 2 days, with all random plug ins, until I finally found yours that blew me away.
I have one request though, and bare in mind that this is my first time using plug ins, WordPress and all that alike, so I am basically a noob. ??
I have to create a page with two languages. Now, your plug-in does allow me to create categories that then I can chose to show one on English version, and other one on Dutch.
The problem is, both of categories post on the same page (slug= am_event). So I have English events and Dutch ones in one page.
Is there any simple way to create different page slug for another category, so I can show each category on a different page?
Thank you,
have a nice day. ??
I found a previous similar question. And it is marked resolved, the plugin was updated. How do you make this work?
]]>I have a page template that displays all events in a nice format, however I’m not sure how to get the featured image to display.
Can you please advise on the bit of code needed to display this?
Thank you.
]]>hi, how do I insirire on a page events in a table ?
]]>Hi, can i set the widgets to show minimum 5 events (e.g if there is 1 upcoming event, the other 4 will comes from past events). i dont want to show there is no upcoming events. any idea on how to implement this?
Thanks in advance
]]>Has anyone attempted a full calendar style layout or know of a sample template? Excellent plugin! I especially like that individual recurring events can be deleted.
]]>Hi there,
In ‘add events’ page, on the calendar, the option to add times is no longer there.
Are you aware of this?
Thank you.
]]>Hi there,
This plugin is so useful, but I wondered if there is a way to have'[content]’ use HTML tags so I can have the formatting remain?
Thank you.
]]>The plugins seems to conflict with ACF Pro and Gravity Forms. When trying to edit an event in the admin, I get an error in the console ‘jquery.js:2 Uncaught Error: no such method ‘instance’ for menu widget instance’ and am unable to edit the event content. I have disabled all plugins one by one and tried with twenty sixteen theme and have found it happens when one of these is enabled.
Any ideas how to fix this? I presume it’s something to do with the date picker?
Thanks
Hi there, thanks so much for a great plugin! I see that you can add date conditionals in the widget, but is it possible to do so for categories and venues? For example only show a comma if a venue & category present?
Thanks a mil,
Charlie
Hi there,
Wondering if it’s possible to make the admin view of the events have a default of sorting by start date.
As it currently stands, the events are sorted by the date they were posted on, which is not particularly helpful.
While I’m at it I’ll throw in another feature request: Have all passed events be hidden from the default event listing and moved to a listing on a separate page for “Passed Events.”
Please understand that this are minor gripes with an otherwise amazing plugin. If there is any way I can help with the implementation of these features please let me know. Keep up the great work!
]]>Im trying to edit the search results, and am trying to determine what I would use to check if an event post is recurring (or part of a recurring set)?
I know theres a setting for it at the post level, since in the backend, it displays a notification under the public button that the event is recurring.
]]>Hello and thank you for a great plugin – does what it should and does it well! I have translated the plugin to Swedish using PO Edit but now I fail in installing it. I′ve placed the PO-file in the language folder of the plugin but what do I need to do next?
]]>First of all THANK YOU! Finally a events plugin that’s not doing way too much and adhering to WordPress standards.
I almost thought I have to write it myself despite the fact that there are dozens of events plugins available already.
I only miss the possibility to use custom fields (particularly a URL field) for events.
Any hints on how I could add custom field support or this specific custom field to your plugin or are there any plans to extend this plugin?
]]>This plugin can count number of date is selected
EndDate – StartDate = Date count
can you help me
Thank you
Great plugin – but I just realised the Tags support seems to have disappeared form my site. I deactivated AM-Events plugin and Tag support was back instantly. Activated and it disappeared again.
By Tags support I mean:
Tags option no longer shows in WP admin menu
Tags meta box no longer shows in Edit/Add post
Tags already added to posts DO show on the front end posts – but if you click them to view the Tag archive page, if says No Posts Found.
Running 1.9.7 version of plugin.
Help please!
Thanks in advance
]]>Hi.. trying to find the bit you said would be available to convert the WP-Query code to a table so that I can list my events on a separate page as well as on a widget? Is that here somewhere?
]]>I can’t changing slug error 404 please help me
wordpress 4.3
]]>Hi! I am using your plugin. It is amazing!
Now I updated new version of wordpress(4.3) and this plugin is not working with new WP 4.3.
parent::WP_Widget => parent::__construct
Can you update your plugin?
Thank you!
Hello,
When I create a new event, I’ll add a few tags to it. However, when the recurring events are created by the plugin, none of the new events have the tags.
]]>How can I reference the category in the template area in the widget.
For example, I would like output to be:
<div class="cat-1">My Event Title</div>
using widget template of:
<div class="[event-category]">[event-title link=false]</div>
Thanks.
am-events