Forum Replies Created
-
AuthorPosts
-
Franky
KeymasterFor now this is not possible. The creation and modif date of each event is kept, but not used yet.
So yes, you can submit a feature request. Or create your own filter of course, see http://www.e-dynamics.be/wordpress/?cat=41
Franky
KeymasterThe header and footer of the events_list do not currently support shortcodes. Fixed here:
Franky
Keymasterextras/plugins/events-made-easy-frontend-submit
Franky
KeymasterI would suggest to look at the logfiles from your outgoing mailserver, the reason for failing to send to that one address will be in there.
Franky
KeymasterAdd is already possible. There’s an extra plugin in the contrib folder for this with a readme included. Delete is not possible using that plugin, but that’s easier to implement yourself than the add part.
Franky
KeymasterMake a feature request, I’ll start working on new features in 2 weeks 🙂
Franky
KeymasterThe problem is: what with events in more than one cat? They would have more than one permalink, then it would be impossible which one to show for e.g. basic [event_list] shortcodes.
What *could* be done: when viewing a single event, I could detect the event id, and based upon that I could show other events in the same category (or categories). But this would only be possible when viewing a single event …
Otherwise I would say to just create different pages for each category, and conditionally show the widget restricted to the same category per page as well.
Franky
Keymasterevents/cat/<cat_name> already exists as a permalink
[events_if] only works inside events, not surrounding them.
Franky
KeymasterThanks for letting me know, I was going to research this next week …
Franky
KeymasterIt seems to work fine for me on your site.
Franky
KeymasterNot yet, that scope is not possible yet. See here for a list of all scopes:
http://www.e-dynamics.be/wordpress/?cat=18
What you want is e.g. this_month–future
What already exists: 0m–3m (this month and 3 months in the future), maybe that helps? You can do 0m–24m or so, to show 2 years in the future starting from this month
Franky
KeymasterThere’s a setting called ‘rss description format’ where you can change the rss content to your liking, it accepts all event placeholders.
Franky
KeymasterYes, it should update automatically.
Mon 16 Sep 2013 at 09:08 in reply to: Ability to add user-specified donation when registering for an event #50732Franky
KeymasterCan you explain the use-case for this? So people want to pay more than the admission fee?
Edit: I think I see what you mean. However, the next 3 weeks are incredibly busy for me, so it will have to wait until October …
Sun 15 Sep 2013 at 00:21 in reply to: After update: Facebook share button doesn't share the single event page #50725Franky
KeymasterThanks for the info, glad it works.
Although the thumbnail size setting has nothing to do with #_EVENTIMAGEURL (if it does, it’s a bug)
.
Franky
KeymasterMoving to feature requests 🙂
Thu 12 Sep 2013 at 13:39 in reply to: After update: Facebook share button doesn't share the single event page #50723Franky
KeymasterI think you need to add also specify the type like this:
<meta property="og:type" content="article">
See http://developers.facebook.com/docs/reference/opengraph/object-type/article
Wed 11 Sep 2013 at 17:58 in reply to: After update: Facebook share button doesn't share the single event page #50721Franky
KeymasterYou need to define extra headers so facebook can use those. Eme has a settings where you can define these extra headers. See http://www.e-dynamics.be/bbpress/topic.php?id=707 as an example of the headers. You can find all headers facebook uses here: http://developers.facebook.com/docs/opengraph/property-types/
Franky
KeymasterYeah … this means you should ask them to make the theme wordpress 3 compliant.
I’m very sorry, but I can’t support all commercial themes (and there are a lot of those behaving badly).
Franky
KeymasterRead and try the second FAQ here:
http://www.e-dynamics.be/wordpress/?page_id=195
It seems your theme is not using the standard wordpress guidelines …
Franky
KeymasterIt seems a weird theme. Just for testing, can you try the default theme?
Wed 11 Sep 2013 at 13:26 in reply to: After update: Facebook share button doesn't share the single event page #50719Franky
KeymasterNew version is released, try updating.
Franky
KeymasterSeems ok to me … then I would think there’s something wrong with either your theme or so … can you post a link? Or send me some admin info so I can check?
Did you check the webserver error logfiles for possible hints?
Franky
KeymasterWhat are your settings for “default event list format” and “default single event format”?
Anna seemed to have issues with a plugin called “404 Redirected” or so, I don’t know why she used it.
Tue 10 Sep 2013 at 10:03 in reply to: After update: Facebook share button doesn't share the single event page #50717Franky
KeymasterFor me it works fine on the latest wordpress, but I’m using the development version of EME of course, maybe that has something to do with it. I’ll try to release that version this evening, so you can just update EME then.
Mon 9 Sep 2013 at 21:48 in reply to: After update: Facebook share button doesn't share the single event page #50715Franky
KeymasterNo, don’t change the code. Like I said:
it seems to work just fine, even without changing anything to the addtoany code
Franky
KeymasterBtw, it took a whole lot more coding that I thought, since the images can be cropped or not. So just adding the size to the name of the image doesn’t work as expected in most cases. Anyway, it’s done …
Franky
KeymasterNo worries, I already implemented it 🙂
Franky
KeymasterAny luck on this? I would like to release the next version, but if your patch arrives on time I can still include it.
Franky
KeymasterJust for own reference, this sql might help:
select * from wp_eme_events where recurrence_id=0 or event_id in (select event_id from wp_eme_events where recurrence_id>0 group by recurrence_id);
or for limiting to e.g. events starting later than 2013-06-23:
select event_id, event_name, event_start_date from wp_eme_events where (recurrence_id=0 and event_start_date> '2013-06-23') or event_id in (select event_id from wp_eme_events where recurrence_id>0 and event_start_date> '2013-06-23' group by recurrence_id);
Franky
KeymasterNo response, slow website and events plugin not active: I can’t check anything from here, so closing until a response comes.
Franky
KeymasterSee eme_settings.php:
– to register the new option when activating the plugin: add a default in eme_add_options(), and add it at the end of the list in eme_options_delete() to delete the option upon plugin removal.
– to update the changed value, add it to the correct “tab” in the function eme_options_register().
– to show (and change) the value in the admin, add it to the correct “tab” in the function eme_options_page(), use the function call eme_options_select() to create your dropdown.
Mon 2 Sep 2013 at 22:51 in reply to: After update: Facebook share button doesn't share the single event page #50713Franky
KeymasterBtw, I just tried
<p>[addtoany url="#_EVENTPAGEURL" ]</p>
and it seems to work just fine, even without changing anything to the addtoany code.
Mon 2 Sep 2013 at 22:39 in reply to: After update: Facebook share button doesn't share the single event page #50712Franky
KeymasterAnd did you try what I mentioned here:
Mon 2 Sep 2013 at 22:37 in reply to: After update: Facebook share button doesn't share the single event page #50711Franky
KeymasterThe behavior of EME has not changed in that sense, the placeholder #_EVENTPAGEURL prints the event url as it has always done. Maybe you did some extra customization in the addtoany plugin?
I’ll try it later on as well
Franky
KeymasterThe release will be in the next days, I hope …
Franky
KeymasterLike the list_thumbnail_sizes() function you posted above 🙂
I’ll try to incorporate it. Of course: I accept patches as well, so if you want to create a patch …
Franky
KeymasterThen send me some admin access info at liedekef [at] telenet.be , so I can take a look myself.
Franky
KeymasterWith SEO I meant the standard wordpress permalinks.
Franky
KeymasterWell, I could add this code:
} elseif (preg_match('/#_EVENTIMAGETHUMB$/', $result)) { // Add custom thumbnail filter
if($event['event_image_url'] != '') {
$pstv_thumb = preg_replace('/(.gif|.jpg|.png)$/', '-70x70$1', $event['event_image_url']);
$replacement = "<img src='".$pstv_thumb."' alt='".eme_trans_sanitize_html($event['event_name'])."'/>";
}and add an extra setting to define the thumb dimension. How’s that?
Franky
KeymasterDid you move your wordpress? or changed some seo settings? First try deactivating and reactivating your seo settings. If that doesn’t work, I would need an example url, and maybe once admin access.
Also check no other plugin might create some conflict …
Franky
KeymasterSee the last 3 posts here:
http://wordpress.org/support/topic/calender-widget-shows-index-of-wordpress
You need to follow the steps in
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
especially step 7: the index.php file must be copied, not moved.
Franky
KeymasterNo. If you’re unfamiliar with changing the php code, I suggest you wait until the next release.
Franky
Keymastertx for the testing 🙂
Franky
Keymaster“scope=today–this_week_plus_one” of course only works if you implemented the code change mentioned above
Franky
KeymasterJust set “show_ongoing” to 0, then it will not show events already taken place on the current day
Franky
KeymasterHmmm … I see … try this:
Franky
KeymasterAs the shortcode says: today–this_week_plus_one, so on Sunday it will show Sunday and Monday (if Sunday is the last day of the week).
Franky
KeymasterSorry, but that’s not possible. Even so, making the button appear based on custom form info is very hard to code up. So this is not going to happen.
I would suggest to use “0” if you don’t attend. That I can check for the payment form as well.
Franky
KeymasterIt should work, of course I implemented more changes so maybe there was a bug afterwards that I fixed … I think you should look at the change for eme_events.php here: http://plugins.trac.wordpress.org/changeset/761874/ (the 2 $page_body lines)
Franky
Keymasterwell, that’s what the newly code I did above does: scope today–this_week_plus_one, meaning show all events from today until the first day of next week.
Franky
KeymasterWell, no that’s not possible 🙂
I can create a scope of “this_week_plus_one” that shifts the days with one, could that help?
Of a new shortcode that shows the next week at the end of this week, but that won’t help you since your end of week in wordpress is not the end of week that you want …
Franky
KeymasterAnd the scope where you say ‘next 7 days’ or so? That’s already possible …
Franky
KeymasterI think it can be done with 2 remarks:
– paging will not work correctly
– the link will jump to the first future event for the series
So if you’re willing to accept that, I might start on this ….
Franky
KeymasterAlthough this is also easy to implement, why not just change the first day of the week to start on Monday? This is a basic wordpress feature you know … then you could just use the scope “this_week”
Sun 25 Aug 2013 at 08:33 in reply to: Event Location and Attributes lost when Event Image is too large #49754Franky
Keymastersince images are now integrated usding wordpress media lib, this is no longer an issue 🙂
Franky
Keymasterno response, so not implementing and closing
Franky
KeymasterFinaly fixed in trunk, will be in 1.1.3
Franky
Keymaster#_LINKCATEGORIES is now possible in trunk as a event format option
Franky
Keymasterfixed in latest release already
Franky
Keymasterfixed in trunk
Franky
Keymasterimplemented in trunk:
Franky
Keymasterdone in trunk:
Franky
Keymasterno counter-argument, so not implementing and moving to “Generic”
Franky
KeymasterIt’s already possible: instead of using #_FILTER_LOCS in the filter format, use #_EVENTFUL_FILTER_LOCS
Franky
KeymasterI was hoping that using the filter in the link I mentioned, it would add custom sizes to the images upon selecting them. But it doesn’t seem to be the case …
But I don’t see an easy way of implementing your stuff generically as well …
Franky
KeymasterHmmm … it doesn’t seem to be working as expected …
Franky
KeymasterImplemented in trunk, will be in the next version:
* Feature: added placeholder #_LINKEDCATEGORIES: creates a link per category for the corresponding event, linking to a list of future events for that category
Franky
KeymasterWell, as said on http://codex.wordpress.org/Function_Reference/add_image_size there’s a topic that reads “Using the New Image Sizes”, subtopic “For Media Library Images (Admin)”.
If you do that, you should be able to just upoad your image and then choose from the media lib the image with the correct size (bot the featured image and the single event use the media lib for images). I still need to try this myself of course.
Franky
KeymasterFirst code is in trunk for this, I now need to test it first 🙂
Franky
KeymasterSorry, this got lost a bit.
In stead of doing this, why not just integrate your custom sizes with the media library and then use one of those custom sizes for the event image?
Franky
KeymasterImplemented here:
Franky
KeymasterOk, moving to feature requests.
Franky
Keymaster(remark: please post in the correct forum)
No, this requires a new option to evens_list. It’s not difficult to add, so I’ll try to add it this evening. Moving to feature requests.
Franky
KeymasterWell, something like that. I can add the code to create links per category, maybe that’s enough?
So then, eg. #_CATEGORY_LINKS would create a list of categories which then link to the list of future events for that category. Sounds fair? If so, I’ll move this to feature requests.
Franky
KeymasterI’m sorry, but unless you use php it is not possible.
Franky
KeymasterYou can use the shortcode [events_list] with the option “scope=this_week” to show the events for the current week. Or use “scope=today–this_week” to show only new events from today till the end of the week, see http://www.e-dynamics.be/wordpress/?cat=18
Franky
KeymasterYes, you can add any button to the rsvp form you want:
Franky
KeymasterYou can use a reserved seat of “0” to indicate not attending, and “1” for attending.
Franky
KeymasterJust enter “style=’color: #ESC_CATEGORIES'” in the calendar title, then it will use the name of the category as the style, and you then just need to create your CSS to become the color you want.
If you don’t want the category, just create a custom attribute and use that in the calendar title.
For your hr-question: just set that in the setting “Small calendar title separator”
Franky
KeymasterYes, you can change the setting for “default event format” (or any “format” setting) in the EME admin panel. See here for the possible placeholders you can use for events (the time placeholders are at the bottom):
Franky
Keymastereither the time on your webserver is off, or the date zone is not set in php.ini. You need to correct this.
Franky
KeymasterCheck the setting “Default event list format”
Franky
KeymasterSee the FAQ at http://www.e-dynamics.be/wordpress/?page_id=195
Search for “How do I resize the single events map”
Franky
KeymasterYour CSS is different for the two sites. Disable the “float: left” for http://mebschooloftransformation.com/event-test/ results in the same layout for both, so I assume adding it for the other one will result in the same as well.
Franky
KeymasterOk, got it. But in the same add_image_size link, there’s also mentioning of how to integrate your custom sizes with the media library. if you do that, you should be able to select those, since the event iomage uses the media library as well.
Franky
KeymasterIn the add_image_size link you provided, there’s merntioning of a plugin called ‘simple image size’, maybe that can help you?
Franky
KeymasterErrr … please don’t kneel … just stand up and … argh, I really shot myself in the foot with this one.
Last attempt to save myself: read the answer to the question Rhinodung posted concerning “a faulty back” here: http://www.i-mockery.com/generalzod/askzod.php
That should do it 🙂
Btw, I think the text was on a t-shirt of thinkgeek in the past, but it seems it’s not on the list any more: http://www.thinkgeek.com/tshirts-apparel/unisex/itdepartment/
Franky
KeymasterRead up on the special events page here:
Franky
KeymasterKneel before thou master, for I am root 🙂
Just kidding ….
… just kneel 🙂
Franky
Keymaster#_EVENTIMAGEURL is for specific images that really are there, not WP-resized versions of it. Those can be used inside the event details of course.
But, if you know the size of the image you want, you can just use that:
<img src="#_EVENTIMAGEURL" width=... height=...>
(omit the height if you want it to be resized by the width value automatically)Of course: wp-resized images are also stored on the site, so if you know the url: just use that, no?
Franky
KeymasterThe wp_mail integration is there, but not released. I’ll release next week or so …
I don’t know how mailpress uses this, but reubz can maybe answer that.
Wed 7 Aug 2013 at 21:15 in reply to: Old Events gone when upgrading from Events Manager Extende to Events Made Easy #50569Franky
KeymasterWell … yes, you should not be out of luck 🙂
A db dump is recommended of course, just in case …
Franky
KeymasterIt should be fine, I already use HTTP/1.1 from version 1.0.12 on. See the changelog:
* Bugfix: make paypal work via https and HTTP/1.1
Franky
KeymasterI will post an example when I retrun from holidays. For now: play with the EMEsetting ‘small calendar title’ and use #_CATEGORIES in there, see above in theposts of this thread.
Wed 31 Jul 2013 at 21:26 in reply to: Looking to customize a few things and gain a few features. #50592Franky
KeymasterHi,
For categories and colors: see http://www.e-dynamics.be/bbpress/topic.php?id=690#post-3554
For alerting people: there’s a (manual) email alert feature for outstanding events people have subscribed to. Maybe that helps? In other cases: you’ll have to extract the name+sms info from the wp database and make one yourself, for now it is not supported in the way you want it to. I’m not aware of other wordpress plugins capable of doing sms things.
For the comments question: it can be worked around if using something like facebook comments. Search the forum for facebook integration: http://www.e-dynamics.be/bbpress/topic.php?id=48#post-3233 and
Franky
KeymasterI see the booking form just fine for events in July, so you probably already found the issue.
Franky
KeymasterIf using qtranslate, use the function call eme_translate around $row and $row:
… eme_translate($row) …
… translate($row) …
Franky
KeymasterI haven’t looked at all your code, but I saw this:
WP_Query("s=$s & showposts=-1");
Did you include the extra spaces as an example? Because there shouldn’t be any:
WP_Query("s=$s&showposts=-1");
And to be honest: I haven’t looked at WP_Query yet, did you try with the examples mentioned above?
Franky
KeymasterJust disable the comments on the “events page”, this is the page you have set in the EME settings.
Franky
KeymasterYou can use the template eme.pot file from here:
http://plugins.trac.wordpress.org/browser/events-made-easy/trunk/langs
and also any po file you might need.
Just mail me the resulting po and mo files at liedekef [at] telenet.be
Franky
Keymaster#RSVP_ENABLED is to be used inside conditional tags, that can also be used inside the events list. So I think this is not really needed.
Franky
KeymasterI haven’t figured out how to change the end date if smaller than the start date yet, but what I can do: activate the month/year dropdown selector so you can more quickly go to the month+year of your choice.
Also: if the end date is smaller than the start date, it will be set to the start date upon saving, so no worries there.
For the text-entry possibility: I disabled that because you need to enter the date in the correct format for jquery to understand, which is cumbersome.
Franky
KeymasterIf your theme is custom made: ask them for the needed support …
Franky
Keymasterwp_mail is now supported, see:
Franky
KeymasterThe whole list can be changed via CSS, so you need to check the html source.
Also, for the list: header, footer and list entry can be changed in the EME settings, so there you can also do some stuff.
Franky
KeymasterThen first try the default theme, start from there.
Franky
KeymasterBased on what I see here:
<p>25 Jun 2013 – 09:15Essen Name*: (Required field) E-Mail*: (Required field) Phone number: Seats*:12345678910 Comment: Keep this field blank: (* marks a required field)</p>
it seems the #_ADDBOOKINGFORM was correctly replaced by the necessary html, but later on something removed all html from it.
This is either done by a plugin or your theme (css). I see that your theme uses the CSS class widget_box for the div around the event data, maybe that has something to do with it as well.
Franky
KeymasterOk, the wp_mail function is interesting. If that allows other plugins to play around with it: I’ll try to add it for the next version, it shouldn’t be that difficult to do …
Moving to feature requests, so I can track this better.
Franky
KeymasterRead up on event placeholders here:
http://www.e-dynamics.be/wordpress/?cat=25
In short: change the “format” setting of e.g. “Single event formatting” to your liking using placeholders and normal html. For example: you’ll need to add the booking form placeholder #_ADDBOOKINGFORM and #_MAP for the google map.
Franky
KeymasterFor the moment no html mails are possible.
And I have yet to hear about sending content to another plugin in order to send mail.
What you can do though: use the csv output, then you have the mail and booking info and you can send mails to your liking 🙂
Franky
KeymasterDue to different implementations per payment gateway, this is not possible for now.
You can give them of course the info of a discount coupon they can use in e.g. paypal.
Franky
KeymasterI don’t know the app … but if it works on the mobile and desktop site, I believe you should look at the theme used.
Sun 9 Jun 2013 at 21:09 in reply to: Old Events gone when upgrading from Events Manager Extende to Events Made Easy #50567Franky
KeymasterI upgraded an old version of Events Manager Extended to EME without problems just last week. So either the problem is somewhere in your database access rights or you might need to start over. If you have a dump of your mysql db I can try it here.
Franky
KeymasterAs answered in my mail to you:
Seems like you changed the special events page.
Read the part about the special events page here: http://www.e-dynamics.be/wordpress/?cat=8
Also: deactivate SEO and see if it works then (you can just deactivate it in the EME settings as well).
If it works without EME using SEO: deactivate/reactivate the wordpress global SEO settings.
Franky
KeymasterI just tried submit=Filter and it works as expected …
Franky
KeymasterI recommend (and support) qtranslate though 🙂
For your issue: can you provide a admin user/pwd for me so I can see at your side what is going on?
You can mail it to liedekef [at] telenet.be
Franky
KeymasterAn attendee is not linked to a single booking, so showing a payment url for a booking is impossible. It only works per booking, not per attendee.
Multiple event booking is a whole different thing … you can create a feature request for that if you want, but other features still need implementing as well.
Franky
KeymasterMake sure you use “Booking mails” as the mail type, otherwise this placeholder doesn’t work.
Franky
KeymasterSee the doc: http://www.e-dynamics.be/wordpress/?cat=44
Franky
KeymasterWPML should be working (although I don’t really support it because of the bizarre state of their webserver), so I can’t imagine why you would need different categories per language.
However, if you see events using
[events_calendar full=1 category=2]
then they should also show using
[events_list scope=all limit=3 category=2]
Also submit=Filter should change the value of the submit button. What version of EME are you using?
Franky
KeymasterRead the part about the events page here: http://www.e-dynamics.be/wordpress/?cat=8
Wed 29 May 2013 at 21:25 in reply to: Event Click redirects to Blog page. Permalink Not Working. #50551Franky
KeymasterSounds like you changed/deleted the events page.
Read this:
Franky
KeymasterWhat is EGP? And does either paypal, googlecheckout, 2checkout or webmoney support it?
If there’s one of the supported payment portals support the currency, I’ll include it.
Franky
KeymasterDone in trunk:
Franky
KeymasterThere’s not a shortcode for that, I can’t imagine how you would tie that together with a paypal thing.
Is there something wrong with the paypal implementation?
Franky
KeymasterRead the usage here: http://www.e-dynamics.be/wordpress/?cat=8
And in your case, then read up on all options for the shortcode [events_list] here: http://www.e-dynamics.be/wordpress/?cat=8 (there are examples on that page as well)
E.g. put this on a single normal wordpress page:
[events_list scope=past]
or
[events_list scope=all]
Franky
KeymasterHow about the booking ID? Is already used when paying via paypal. The booking ID is tied with the event ID of course.
Franky
Keymaster#_BOOKINGS or #_ATTENDEES don’t influence the actual bookings being made, just how it is shown: a list of attendees always shows unique names, but one person can make more than one booking. Sometimes the cause of this is the user pressing refresh or back or so … if you want to avoid that: use the captcha.
Franky
KeymasterWell … everybody wanted wordpress integration, so it’s there 🙂 Indeed they are now ignored and will disappear in a future release.
You can always use the imageurl manually and set the image width/height in the code …
Franky
KeymasterPut something like 2038 for the end date 🙂
Franky
KeymasterShould be fixed here:
Franky
KeymasterThanks, I can now reproduce the issue here …
Franky
KeymasterOk, just mail me the admin account info: liedekef [at] telenet.be
I’ll try to take a look this evening.
Franky
KeymasterHmm … indeed: while it works locally, it doesn’t work on a remote host.
Try this fix:
Franky
KeymasterReplace
<br/>
by the correcter<br />
, should helpFranky
KeymasterYes, as said in the doc: http://www.e-dynamics.be/wordpress/?cat=30
Maybe it is not entirely clear, but eme_print.css influences indeed “print” operations (I hardly ever print though …)
Franky
KeymasterMaybe a permission issue?
Franky
Keymasterevents_manager.css is the basic CSS that comes with the plugin. It should always appear in your html source, so that’s fine.
For the eme_print.css and your theme CSS dir: I use the standard wordpress functions get_stylesheet_directory (to check if the css exists) and then get_stylesheet_directory_uri (to show it in the html source). So if you don’t see eme_print.css in your html source, it means get_stylesheet_directory (with “/eme_print.css” appended to it) didn’t find it.
Franky
KeymasterI just tried this: seems to work as expected …
Franky
KeymasterFirst: it is set per user in your user profile (at the bottom, wordpress ought to do it itself …)
Second: if not set in your profile, the generic wordpress date format is used.
For the time: the generic wordpress time format is used.
Franky
KeymasterI’m not sure I understand what you’re saying here.
First of all: it doesn’t seem to have anything to do with paypal, correct?
Second: the booking price can only be shown *after* you make the booking, how else can I know what price to charge? The event price can be shown by you before or after the booking form, in any of the event format settings.
Third: I don’t think I show the price of any event in the overview when editing events. Where did you see that price info before?
Franky
KeymasterThat’s already possible using recurrent events, just use 12 months as the interval.
Franky
KeymasterThere’s always the documentation.
For events: http://www.e-dynamics.be/wordpress/?cat=25
For bookings: http://www.e-dynamics.be/wordpress/?cat=27 (I updated it to clarify the placeholders you can use inside #_BOOKINGS:
For booking lists: only the extra placeholders mentioned below can be used, not the standard placeholders for events. The reason for this is that #_BOOKINGS can only be used inside an event format setting (single or list, it is useless anywhere else), so it only shows info when using event shortcodes on pages. And since you’re using an event shortcode, all event placeholders are already at your disposal.
Franky
KeymasterSince the bookings list only appears inside an event, it’s up to you to add the info to the event page.
Franky
KeymasterWhen using shortcodes inside your page, the template is also kept. So I don’t really understand this reason …
But as said, see the example in the link I provided for shortcodes. The method is identical when using the API function call directly:
<?php eme_get_events_list(“limit=3&category=3&period=future&order=ASC&format=xxxx”); ?>
where xxx is the html encoding of your format.
Franky
KeymasterSee an example here (when using the shortcode, but it’s identical):
http://www.e-dynamics.be/bbpress/topic.php?id=1578#post-5979
Franky
KeymasterFeature request please 🙂
Franky
KeymasterSeems ok. You do know that #_BOOKINGS can only be used inside event format settings (“single event format” or “event list format”), yes? Otherwise it will not be replaced with something you expect.
Franky
KeymasterWhat is the value of the EME setting called “Bookings list format”?
-
AuthorPosts