Tim Vergara
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Events post typeThe custom post type for events is “event”
Hello,
You might need to Increase the memory_limit of your WordPress Install. You could try changing it to 256mb or more. Here is sample link to increase the memory limit
https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
- This reply was modified 6 years, 9 months ago by Tim Vergara.
Hello,
Are you using the latest version of WordPress, EM and EM Pro (in case you’re subscribed)
This could alos be caused if your PHP version. Have you tried changing the php version of your WordPress Install?
Hello,
You could do this by using a their shortcode to format the display as table and using CSS.
Sample Shortcode:
<table class="events-list"> [events_list scope="future" limit="0"] <tr> <td>#_EVENTLINK</td> <td>#_EVENTDATES</td> </tr> [/events_list] </table>
sample css is: (assuming you havve a table with class named events-list)
table.events-list tr:nth-child(odd) {background-color: #DEDEDE;} table.events-list tr:nth-child(even) {background-color: #f2f2f2;}
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Google map problemsHello,
If you’re using the latest version of EM. There is a known issue with a consent box when editing an Event. The quick fix is to Disable the consent box on Settings.
Disable the consent forms on privacy settings in Events > Settings > Privacy > Consent, by setting all the forms to ‘Do Not Include’
EM will be releasing a new upload in next few days that will fix this.
Hello,
Usually upload limits for files is defined by your hosting/WordPress Install.
Here’s a link to increase upload size limit: https://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/
Hello,
SOrry, But I’m confused by what you mean on custom attribute and the field. Could you send a screenshot or a link of it.
Thanks!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Error 500Have you tried deleting the folder events-manager and events-manager-pro inside the plugins folder and install a fresh one and try to activate again?
Alternative way is to delete the entries of EM Settings on Database. Under wp_options tables. (it may be different depending on your prefix) Try searching and deleting for any recurrence of dbem_. Settings have a prefix of dbem_
Try also on going to Dashboard > Settings > Permalinks and just hit Save. then try to activate plugin again.
You could check the documentation about conditional placeholders: https://wp-events-plugin.com/documentation/conditional-placeholders/
Though if you’re referring to checking the user by role type or by admin or event owner. You might need to do some php coding.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Error 500Under Event > Settings > Admin Tools. There is a Reset/Uninstall.
Hello,
I assume you made two type of Tickets?
Please the settings “At least” and “At most” which is located when you Edit a ticket inside the event. It means it requires you to purchase at least 1 ticket of a max ticket of that type. By default you can put blank there so it doesn’t require you to purchase that type of ticketForum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] nextcloud calendarHello,
Currently there is no implementation for it. You could file for a feature request on https://eventsmanagerpro.com/support/add-a-new-request/
however there is a FullCalendar if this can help you https://www.ads-software.com/plugins/wp-fullcalendar/
You could however use this small snippet to display the timezone: Place the code on your theme’s functions.php. Then you can use the placeholde #_EVENTTIMEZONE to display timezone
add_filter( 'em_event_output_placeholder', 'em_display_timezone_custom_placeholder', 1, 3 ); function em_display_timezone_custom_placeholder( $replace, $EM_Event, $result ){ if( $result == '#_EVENTTIMEZONE' ){ if( isset( $EM_Event->event_timezone ) ) { $replace = $EM_Event->event_timezone; } } return $replace; }
Hello,
I’ve reported this as a Bug on EM. Hopefully it will be fixed on the next release.
Hello,
This is currently a know bug and will be fixed on the next update. You could temporary disable the consent box:
Which is located under Events > Settings > Privacy > Consent, by setting all the forms to ‘Do Not Include’