imranpixelite
Forum Replies Created
-
Hi Otgamera,
At the moment you need to hook into em_event_save filter to make this work Or modify template file at events-manager/templates/forms/event-editor.php
to use templates: https://wp-events-plugin.com/documentation/using-template-files/
eg. wp-content/themes/Your Theme/plugins/events-manager/forms/event-editor.php
Hi Xavfleg,
Did you save the backup anywhere? Or ask your webhost to load the revisions of the site.
Thank you!
Hi Matthieu,
You can modify the template file at events-manager/templates/forms/event-editor.php and then add custom textarea
e.g.
<textarea name="excerpt" rows="10" style="width:100%"><?php echo $EM_Event->post_excerpt ?></textarea>
to use templates: https://wp-events-plugin.com/documentation/using-template-files/
eg. wp-content/themes/Your Theme/plugins/events-manager/forms/event-editor.php
To save this, try the following snippet (I haven’t tested this 100% but should be something like this)
add_filter('em_event_save','custom_event_save',1,2); function custom_event_save($result,$EM_Event){ if ( !empty( $_REQUEST['excerpt'] ) ){ $EM_Event->post_excerpt = $_REQUEST['excerpt']; } return $result; }
As for where to paste custom snippet – https://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Warning from PluginHi Chenryahts,
PHP errors and warnings mostly show on the front-end of the site when the wp_debug mode is enabled. Please check that you are not working in wp_debug mode. You can disable the debug mode by following these directions:
https://docs.whmpress.com/faq/how-to-enable-or-disable-wp_debug-using-file-manager/
https://premium.wpmudev.org/blog/debugging-wordpress-how-to-use-wp_debug/?utm_expid=3606929-108.O6f5ypXuTg-XPCV9sY1yrw.0&utm_referrer=https%3A%2F%2Fwww.google.com.pk%2FHi Franco,
Please allow manage_bookings capabilities as well
https://monosnap.com/direct/COmuQgUmVXrQCHxWIKBakCL6XAbb1g
Thank you!
Hello Evan,
Did you test that code, Has it worked?
Hello Sabuddhisttemple,
As far as I can see in the list, the events on expanding are from multiple categories, please ensure you are double-checking it.
Thank you!
Hi Adz,
#_BOOKINGFORMCUSTOM{field_id}
Only Pro Shows booking from custom fields. The field_id value must match that of your custom booking form field. Using this can send in mail:
Hi Nwmbm,
Currently there isn’t an option for this feature, however I’d be happy to add your suggestion to the feature request log. The devs regularly review this and depending on demand for a specific feature they decide on when / if a feature is added.
Kind regards,
Hi D,
Could you please provide us with the link to that page of your site? So that I can take a closer look and offer you with a tailored answer.
Thank you!
Hi Jon,
This shortcode:
#_BOOKEDSPACES
https://wp-events-plugin.com/documentation/placeholders/
Please let me know if you have any questions.?
Hi Head Goldfish,
This suggestion will be considered as a featured request and will be forward to our development team. This way it can be taken into consideration for future development.
Thank you!
Hi again,
I have further investigated, please fix these errors which can prevent the functionality working:
Moreover, if you have installed the Pro extension then it will go to the cart easily.
Hi Matatools,
I can’t replicate the issue on my test site. you can try and activate WP Safe Mode to help you narrow down and rule out any possible conflict with other plugins or themes.
Let me know how it goes.