joneiseman
@joneiseman on WordPress.org
- Member Since: May 16th, 2011
Contribution History
joneiseman’s badges:- Core Contributor
-
Posted a reply to Submit new event and edit published event, on the site WordPress.org Forums:
I guess there's no simple way to get your desired behavior. -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
I asked DeepSeek how to make all the fields in the event form to be… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
I don't know anything about the pro support forum. -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
I'm just an unpaid volunteer trying to help people on this forum. I am not… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
My guess is that you are getting the critical error because copied the code snippet… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
Because I haven't provide a code snippet to make all those things required. -
Posted a reply to Events no longer have Publish option and not appearing in calendar, on the site WordPress.org Forums:
I have seen problems like this reported before. For example in the following thread: https://wordpress.org/support/topic/your-event-details-are-incorrect-and-cannot-be-published-please-correct-these-e/… -
Posted a reply to Submit new event and edit published event, on the site WordPress.org Forums:
Did you try giving them the edit_events capability but not the publish_events capability? -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
I think you mean the event edit form. The booking form does not show any… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
In the free version of the plugin you can add addional fields for events (including… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
You can't add additional fields to the booking form in the free version of the… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
You don't add "Required" to the template for fields that your want to be required.… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
Here's the documentation on modifying template files:https://wp-events-plugin.com/documentation/using-template-files/ As you can see the template files can… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
You can see an example in the following thread: https://wordpress.org/support/topic/code-needed-to-make-the-telephon-field-required/ -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
You don't need to use CSS to change from a list to a grid. If… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
I can't reproduce problem #1. I already explained how to remove the URL field in… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
Yes, you can create as new location when submitting an event. -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
Here are the instructions for allowing anonymous event submissions: https://wp-events-plugin.com/documentation/user-event-guest-submissions/#anonymous-event-submissions You need to create a… -
Posted a reply to Conditional placeholder not working, on the site WordPress.org Forums:
Here's a corrected version of the code snippet: add_action('em_event_output_show_condition', 'my_em_new_event_output_show_condition', 1, 4);function my_em_new_event_output_show_condition($show, $condition, $full_match,… -
Posted a reply to Do not display URL field, on the site WordPress.org Forums:
Create the directory wp-content/plugin-templates/events-manager/forms/event then copy wp-content/plugins/events-manager/templates/forms/event/location.php to that directory then modify the copied version.… -
Posted a reply to Function _load_textdomain_just_in_time was called incorrectly, on the site WordPress.org Forums:
This is something the plugin owner would need to fix. -
Posted a reply to Control the format of CONTENTS, on the site WordPress.org Forums:
Go to the Formatting tab and enable "Super Advanced Mode" then in the Events section… -
Posted a reply to Customize the design template for anonymous events, on the site WordPress.org Forums:
First go to the General tab in Events > Settings then in the General Options… -
Posted a reply to Shortcode question, on the site WordPress.org Forums:
You could use the following shortcode: [events_calendar long_events=0 calendar_size=small has_search=1 show_search=1 scope=future] I don't know… -
Posted a reply to Shows the current year, on the site WordPress.org Forums:
You can create a custom scope to do this: https://wp-events-plugin.com/documentation/tutorials/create-your-own-event-scope/ Then you can use the… -
Posted a reply to Displaying past events and months, on the site WordPress.org Forums:
For showing all events (including past events) go to Event > Settings and then select… -
Posted a reply to Image upload is required in event submission, on the site WordPress.org Forums:
Well like I said, it worked for me. Maybe someone else will be able to… -
Posted a reply to Image upload is required in event submission, on the site WordPress.org Forums:
Interesting, it worked for me. -
Posted a reply to Image upload is required in event submission, on the site WordPress.org Forums:
Use the following code snippet instead to make the image upload a required field: add_action('em_uploads_uploader_init',… -
Posted a reply to Image upload is required in event submission, on the site WordPress.org Forums:
You can use the em_event_validate filter. add_filter( 'em_event_validate', 'my_em_event_validate', 10, 2);function my_em_event_validate( $is_valid, $EM_Event )… -
Posted a reply to Conditional placeholder not working, on the site WordPress.org Forums:
Here's a tutorial on how to create a conditional placeholder: https://wp-events-plugin.com/documentation/tutorials/creating-conditional-placeholders-for-events/ To create a {is_newpost}… -
Posted a reply to spam bookings flooding my site, on the site WordPress.org Forums:
I think the phone number was a hidden field so only bots would fill it… -
Posted a reply to guestbooking wirh recaptcha, on the site WordPress.org Forums:
No, but you can find a workaround in the following thread: https://wordpress.org/support/topic/spam-bookings-flooding-my-site/ -
Posted a reply to Conditional placeholder for event excerpt, on the site WordPress.org Forums:
Here's the code: add_action('em_event_output_show_condition', 'my_em_event_excerpt_output_show_condition', 1, 4);function my_em_event_excerpt_output_show_condition($show, $condition, $full_match, $EM_Event){ if( 'has_excerpt' == $condition… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
It's against the forum rules to request or accept credentials for logging into a website.… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
No, there's no copy mistake. I suppose the author of the current page where you… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
I put this shortcode on a page and it displayed all the events with the… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
You could use the following code snippet to create a shortcode to do this: add_shortcode('em_events_list_by_author',… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
You could create your own shortcode to do this using the following code snippet: add_shortcode('em_events_list_by_author',… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
In your example is the ABC Association the Author of their listing page as well… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
Do you mean that on each single event page you want to display a list… -
Posted a reply to Format single-day event to show date only once, on the site WordPress.org Forums:
You can also make the default events page show Grouped Lists with grouped daily by… -
Posted a reply to Format single-day event to show date only once, on the site WordPress.org Forums:
You could use the following shortcode: [events_list_grouped mode=daily] -
Posted a reply to #_LOCATIONNEXTEVENTS – change date order, on the site WordPress.org Forums:
It is set to display the events in ascending order by default. The setting is… -
Posted a reply to Created event displayed in their listing?!, on the site WordPress.org Forums:
You can use the following shortcode: [events_list owner=me] -
Posted a reply to How do I get my iCAL URL, on the site WordPress.org Forums:
Add the following code snippet: function my_login_redirect( $redirect_to, $user, $auth_error ) { if ( isset(… -
Posted a reply to Events listing spacing, on the site WordPress.org Forums:
Can you provide a link to the page? -
Posted a reply to image upload, on the site WordPress.org Forums:
You need to provide a list of allowed extensions in order to get this to… -
Posted a reply to How do I get my iCAL URL, on the site WordPress.org Forums:
Create the directory wp-content/plugin-templates/events-manager/templates and then copy the file wp-content/plugins/events-manager/templates/templates/ical.php to that directory then modify… -
Posted a reply to How do I get my iCAL URL, on the site WordPress.org Forums:
https://www.wecantogether.net/events.ics