Franky
Forum Replies Created
-
no reply, marking resolved
Forum: Plugins
In reply to: [Events Made Easy] Calendar event links – is just text (no links)Sorry, due to a typo the link was not being shown for the placeholde #_LINKEDNAME , causing the effect you see. I just released 2.2.84 to rectify this.
Forum: Plugins
In reply to: [Events Made Easy] HTML5 form localedid you indicate in wordpress that your site language is czech? EME uses the language detected by wordpress, so make sure you indicate the correct frontend language in the wordpress general settings. Also, concerning the html5-date: that also depends on your browser setting the language (EME can’t even do that).
Forum: Plugins
In reply to: [Events Made Easy] Use external url for single events – open in new tabCan you tell me which placeholder you use (the one that gets replaced with the event link)? I think I can do it easily for #_LINKEDNAME but in other cases it gets complicated …
The way you describe it, it seems there are some html issues on that page. Did you check the resulting html via a html validator?
Just tried it here: seems to be working as expected. What do you mean with “the page is broken”?
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Input problemI fixed some issues in the plugin for hidden properties (those were ignored) and some other stuff while I was at it 🙂
Please try the latest release (1.0.71).Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Input problemLet me test that out myself. It should work, but there’s always the possibility that there’s a bug somewhere.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Input problemHi Ard,
it seems a bit unclear to me what you want to achieve. Your initial setup should be (adding “textarea):
<div class="input"> <label for="event_single_event_format"><?php _e('template form id=2','events-made-easy-frontend-submit'); ?></label><br /> <?php EMEFS::required_field('event_single_event_format','textarea'); ?> </div> <div class="input"> <label for="event_registration_form_format"><?php _e('template vrijwilligers id=1','events-made-easy-frontend-submit'); ?></label><br /> <?php EMEFS::required_field('event_registration_form_format','textarea'); ?> </div>That will then allow people to enter the single event format and the registration form format. Your comment “template vrijwilligers id=1” or “template form id=2” are just text info, nothing else (php echo).
If you want people to always use that layout for those 2 options, you can set those as default in the EME backend for new events (not a template then) or indicate in the form (via hidden fields) that you want to use those templates (you need to use “property” there because those settings are handled differently):<?php EMEFS::property('event_single_event_format_tpl','hidden',"value=2"); EMEFS::property('event_registration_form_format_tpl','hidden',"value=1"); ?>While I normally ask for feature requests to be registered on https://www.e-dynamics.be/wordpress , I just implemented this. It will be in the next version (not 2.2.81 which I just released though).
1) To change the location balloon, go in the general EME settings, tab maps. The setting is called “Default location balloon format” (but currently not changeable per location, so the word “default” is not totally correct).
2) While that is not possible, I recommend you take a look at the combo of the shortcodes eme_filterform and eme_events. You can then create a filter on town, … For locations, use the eme_filterform shortcode together with eme_locations_map
Forum: Plugins
In reply to: [Events Made Easy] Map is darkI have this in CSS:
:root { --eme-map-tiles-filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3) brightness(0.7); } @media (prefers-color-scheme: dark) { .eme-map-tiles { filter:var(--eme-map-tiles-filter, none); } }As you can see, only if the browser prefers the dark color scheme, EME will use this.
Forum: Plugins
In reply to: [Events Made Easy] Syntax error in ExpressiveDate.phpIf that is the error, then you’re not using php 7.4 but something much older.
I tested the file here with a 7.4 php and it works as expected, also running it on several ubuntu 20.04 sites (all with php 7.4)Forum: Plugins
In reply to: [Events Made Easy] To apply for the multiple discount codesYou assing the group to the event as you would do with a regular discount, and still use #_DISCOUNT in your event RSVP form as well, as always …
Forum: Plugins
In reply to: [Events Made Easy] User confirmation some days before event startsThe next version will no longer add #_BOOKING_CONFIRM_URL automatically, that should solve your issue more easily 🙂