beonword
Forum Replies Created
-
I’m using Elementor Pro together with Events Manager, and I expose the Events Manager fields to Elementor through small custom WordPress shortcodes.
For example, this is the shortcode I use for the event date in my single event template:
function wpc_elementor_shortcode() {
global $EM_Event;
$EM_Event = em_get_event($EM_Event);
return $EM_Event->output("#l #j #F #Y");
}
add_shortcode('emlistdate', 'wpc_elementor_shortcode');I can then simply add [emlistdate] to an Elementor Shortcode widget.
You can do the same for the other Events Manager fields, for example:
function em_event_location() {
global $EM_Event;
$EM_Event = em_get_event($EM_Event);
return $EM_Event->output("#_LOCATIONNAME");
}
add_shortcode('emlocation', 'em_event_location');For custom Events Manager attributes, you can also output them with:
$EM_Event->output("#_ATT{your_field_name}");Forum: Plugins
In reply to: [Gallery by Visual Portfolio] Saved Layout: ‘Edit Gallery’ Resets all InputsHello,
You can use the WP Rollback plugin to rollback to version 3.3.1. This is just a workaround. We have to wait for a real solution from the developer. I hope we see an update soon.
Thanks,Beonword
Forum: Plugins
In reply to: [Gallery by Visual Portfolio] Saved Layout: ‘Edit Gallery’ Resets all InputsHello,
I have the same problem. I had to rollback to version 3.3.1 to edit my saved layout without losing all my custom titles, description and links. Please help me out. Thank you very much for this beautiful plugin.Beonword
Forum: Plugins
In reply to: [Ocean Extra] Fatal error version 2.0.3Solved it by first updating OceanWP to version 3.3.4 and then updating Ocean Extra to version 2.0.3. Don’t do it in reverse order, it will crash your website.
Forum: Plugins
In reply to: [Dynific Addons for Elementor (formerly AnyWhere Elementor)] PHP 8 errorForum: Plugins
In reply to: [BSK PDF Manager] Translating BSK PDF Manager ProI needed to translate the names of the month in Dutch language. I changed date to date_i18n on line 580 in display.php. Please implement this solution in new versions so the date uses the WordPress language.
