E
by ernestortiz 1 (0 reviews)

EventsnDocs

This is a simple plugin to display a list of events (OR events on a map), as well as documents related.

EventsnDocs ranks #49,335 among WordPress.org plugins with 1+ active installations, is #1,088 of 1,908 in the Calendar & Events category, a 1/5 rating from 0 reviews, and was last updated Sep 14, 2016. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 4.6 (Current: 7.1.2)
v1.0.5 Current Version v1.0.5
Updated 10 years ago Last Update on 14 Sep, 2016
Refreshed 13 hours ago Last Refreshed on
#1,088 of 1,908 in Calendar & Events No update in over a year
View on WordPress.org
Rank
#49,335
No change
Active Installs
1+
-91.7%
KW Avg Position
16
No change
Downloads
1.8K
+5 today
Support Resolved
0%
No change
Rating
20%
Review 1 out of 5
1 (0 reviews)

Next Milestone 10

Total Progress -236190%
0+ 10+
2,363
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
Upgrade to Pro
Need 23,629 more installs to reach 10+

Rank Changes

46,864 48,097 49,330 50,563 51,797 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
46,864 48,097 49,330 50,563 51,797 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
Current #49,330
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
0 10 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

1.0
0 reviews
Overall 20%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Frequently Asked Questions

Common questions about EventsnDocs

As you can see in the backend of your blog, this plugin creates a new custom post type; where you can find the usual stuff as well as new boxes with some things you can expect on "Events": the dates, the location (yes, with a map to point that), etc. You simply fill all of that fields, publish the post, and voilá!: you get an Event on your blog.
Please, note that, once installed the plugin, in the ordinary posts a new box appears, named "Post related with some event", with a dropdown with the title of existing events. If that's the case, you should select the related events.
Well, the idea is simple, I know... But the intention is that, using few shortcodes and some CSS to style them, you can adapt it to your own needs (basic needs of events and related docs). For example, you can create a template page and use the shortcodes on it. There are a lot of tutorials about the use of shortcodes on the web; for example the WP Codex, at https://codex.wordpress.org/Shortcode.
Well, shortcodes can be used as widgets using the text widget. Just write the shortcode on the text widget content; for example [eventsndocs_show_events which="next 1 rand"] So, back to the shortcode... The simplest one is the shortcode to show the status (if the event is ended, or is still happening, or will occurs in the future) and meta data of the current event (the start and finish date, and its location). For example: Show meta and status of the current event: [eventsndocs_show_metas] Show meta and status of the last event: [eventsndocs_show_metas event_id="last"] Show only the status of the event with ID 89: [eventsndocs_show_metas event_id="89" show="s"]
Once again, some samples clarify the way to get it: Show all documents related with current event: [eventsndocs_show_docs] Show two documents (title & excerpt) related to event with ID 89: [eventsndocs_show_docs event_id="89" q='2' show='t,e'] Show all documents related to the last event: [eventsndocs_show_docs event_id="last"] The parameter show in the second example is useful because decides not only what you want to show in the documents (title, author, excerpt or image) but the order.
Well, the following examples could seems a bit straightforward the first time, but later on you realize how easy it is; specially if you dare to play with it. Show all published events, order by start date (higher first): [eventsndocs_show_events] Show all published events, in a map, with a filter: [eventsndocs_show_events type="map"] Show all published events, randomly: [eventsndocs_show_events which="all rand"] Show next following event (not current one): [eventsndocs_show_events which="next"] Show all events in the future (closer to current date appears first): [eventsndocs_show_events which="next -1"] Show one event in the future (randomly): [eventsndocs_show_events which="next 1 rand"] Show all events in the future (closer to current date appears last): [eventsndocs_show_events which="further -1"] Show all current events (closer to its ending time appears last): [eventsndocs_show_events which="current -1"] Show last event (closer to current date appears first): [eventsndocs_show_events which="last"] So far, so good (I hope). But there are here other two parameters: xtra, to show some xtra info with the event (its meta, status, or related docs), and the parameter we already met: show. Show last event, followed by its status and the related docs: [eventsndocs_show_events which="last" xtra="s,d"] Show status of last event, followed by the event title: [eventsndocs_show_events which="last" xtra="s,e" show="t"] Please, note in the last example, that xtra also includes "e" (for "events"). Events allways appears first, unless you add "e" on xtra parameter (and consequently events appear in the order of "e"on xtra). Show last event and its related docs (only title & excerpt on both): [eventsndocs_show_events which="last" xtra="d" show="t,e"] As you can notice, the show parameter is the same for events and for its related docs, when we decided to show both. To avoid this, and get to show different things on events and documents using the same shortcode, you should use another parameter: showfordocs. The previos example, but now the event shows title & excerpt, and the related docs only shows the title: [eventsndocs_show_events which="last" xtra="d" show="t,e" showfordocs="t"]
With the shortcode exemplified below: Show organizers: [eventsndocs_show_who] Show sponsors: [eventsndocs_show_who who="s"] Show sponsors, preceded by title "Our Sponsors" [eventsndocs_show_who who="s" title="Our Sponsors"]

Sign In / Register

You need to sign in or register to use this feature.