E
by goldenapples
0 (0 reviews)
External Events Calendar
This plugin adds a basic "upcoming events" calendar of links to Wordpress.
Compatibility unknown
v0.4.0
Current Version v0.4.0
Updated 15 years ago
Last Update on 04 Feb, 2011
Refreshed 6 hours ago
Last Refreshed on
Rank
#23,421
—
No change
Active Installs
30+
—
No change
KW Avg Position
102.5
+0.5 better
Downloads
19.8K
+3 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 40
30+
40+
944
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 4 more installs to reach 40+
Rank Changes
Current
#23,421
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| upcoming events | 73 | — | Tag | 11 hours ago |
| events calendar | 132 | — | Tag | 11 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.4.0
- Last Updated
- Feb 04, 2011
- Requires WP
- 2.9.1+
- Tested Up To
- 0
- PHP Version
- N/A
- Author
- goldenapples
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,714
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
Popup Builder - Create highly converting, mobile friendly marketing popups.
200K+ installs
#263
پارسی دیت – Parsi Date
100K+ installs
#369
LatePoint – Calendar Booking Plugin for Appointments and Events
100K+ installs
#384
Frequently Asked Questions
Common questions about External Events Calendar
Short answer, yes. Choose those selections from the widget options form.
This plugin uses the php strtotime() function to process the dates entered, which can handle a lot of date formats. "Next Monday", for example, will be correctly computed on most servers (but will always refer to the next Monday in the future, not the next Monday from the time someone added the link). '10/5/10' will be interpreted as October 5, not May 10. But "10 May" will work as expected. PHP does not, to the best of my knowledge, recognize non-English dates in text format very well. "1 enero 11" will probably fail. If you are having problems having your dates be ordered properly, it is most likely because the strtotime() function is not able to recognize or parse your input. Try entering your dates in a simple format like MM/DD/YYYY and using the WordPress date format settings to display them.
Yes, you can add an additional link category and use it to store events. If the category you create has an id of 11, for example, you can pull events from your own category using the shortcode [eventslisting link_category=11]. At the moment, the widget will only pull from the default "Events Calendar" link category. If you create your own category, you will have to manage it yourself - the "Events Calendar" submenu page under "Links" will only show events in the default category.
As of version 0.3, you have the option to include or not include the default CSS styling. Take a look at the css file provided to see the class names that need to be styled. If you define those in the style.css of your main theme, you can safely disable the default CSS, while will make your page loads a wee bit quicker. As of version 0.4, you can also copy the existing gad-events-calendar.css file to your theme directory and edit it there, OR create a new directory under /wp-content/plugins called gad-events-custom and copy the stylesheet there. This can help protect your style changes in case of updating the plugin in the future.
You can pass any of the same options to the shortcode that you can select in the widget. Here is the syntax for each of the options: display_title (false|string) The title, if any, to show before the list of events. Will be wrapped in an <h2> tag if present. show_past_events (true|false) Present for backwards compatability. Use show_events instead. show_events ("upcomingonly"|"allevents"|"pastonly") Pretty much what it implies. Defaults to "upcomingonly". show_descriptions (true|false) Whether or not to show descriptions in the list of events. Defaults to true. show_images (true|false) Whether or not to show link images, if present, in the list of events. Defaults to false. orderby (ASC|DESC) ASC: Order events current to future, or past to future. DESC: Order events future to current (or past). Defaults to ASC. limit (int) If present, the maximum number of events to show in the listing. link_category (int) A different category to pull events from, other than the default "Events Calendar" category. So for example, if you want to include the five events farthest in the future in a post, this would be the shortcode to use: [eventslisting display_title="Planning Ahead" orderby=DESC limit=5]