Victor

Forum Replies Created

Viewing 15 posts - 4,441 through 4,455 (of 5,398 total)
  • Author
    Posts
  • in reply to: Emitir entradas en nuestra oficina física #1301000
    Victor
    Member

    Hola Antonio!

    Un gusto poder ayudarte! 🙂

    Voy a cerrar esto por ahora, pero, como siempre, no dudes en abrir otro topic si tienes alguna otra pregunta o consulta respecto a esto u otro tema.

    Saludos!
    Victor

    in reply to: Not updating on Event Ticket Page #1300998
    Victor
    Member

    Hi Jo!

    Thanks for clearing that out!

    Yes, the [tribe-user-event-confirmations] shortcode will show a list of links to events you confirmed attending (by RSVP or buying a ticket), only if you are logged in.

    If are logged in but did not confirm attending to any event, then it should show the message “You have not indicated your attendance for any upcoming events.” Are your users seeing that message or are you not getting any message at all?

    Let me know.

    Thanks,
    Victor

    in reply to: Elementor and Tribe Help Please! #1300979
    Victor
    Member

    Hi Madeline!

    Thanks for clearing that out! 🙂

    I tried the Elementor plugin myself and I could make use of the shortcode by adding a “Shortcode” element.

    Could you please tell me which is the element your are using?

    Also, is it possible for you to use a different shortcode that is not from our plugins? Does it work?

    Let me know about it.

    Thanks,
    Victor

    Victor
    Member

    Hi Jo! 🙂

    Thanks for posting that in our User Voice! We really appreciate your feedback.

    The team will review your post and let you know if further details are needed.

    Best!
    Victor

    in reply to: Can’t set the venue field as required #1300975
    Victor
    Member

    Hi there!

    Just wanted to give you a workaround for the required venue issue. You should put the following code snippet in your functions.php file:

    <?php
    /**
     * Require that a new or existing venue is specified when events are submitted via
     * the frontend submission form provided by Community Events.
     *
     * This is a temporary workaround for bug #76297.
     */
    
    function ce_submissions_require_venue( array $submission ) {
    	// Unhook self
    	remove_filter( 'tribe_events_community_sanitize_submission', 'ce_submissions_require_venue' );
    
    	// Gather submitted venue data
    	$venue_ids  = (array) Tribe__Utils__Array::get( $submission, array( 'Venue', 'VenueID' ), array() );
    	$new_venues = (array) Tribe__Utils__Array::get( $submission, array( 'Venue', 'Venue' ), array() );
    
    	// If there are signs of valid existing venues being specified, do nothing more
    	foreach ( $venue_ids as $possible_id ){
    		if ( absint( $possible_id ) ) {
    			return $submission;
    		}
    	}
    
    	// If there are signs of new venues being submitted, do nothing more
    	foreach ( $new_venues as $venue_name ) {
    		$venue_name = trim( $venue_name );
    
    		if ( ! empty( $venue_name ) ) {
    			return $submission;
    		}
    	}
    
    	// Force the venue check to run and fail
    	add_filter( 'tribe_events_community_required_fields', 'ce_submissions_add_venue_check' );
    	add_filter( 'tribe_events_community_required_venue_fields', 'ce_submissions_add_failure_field' );
    	add_filter( 'tribe_community_events_form_errors', 'ce_submissions_tidy_venue_error_message' );
    	return $submission;
    }
    
    function ce_submissions_add_venue_check( array $required_fields ) {
    	$required_fields[] = 'venue';
    	return $required_fields;
    }
    
    function ce_submissions_add_failure_field( array $required_fields ) {
    	$required_fields[] = '__unfindable';
    	return $required_fields;
    }
    
    function ce_submissions_tidy_venue_error_message( array $errors ) {
    	foreach ( $errors as $index => $error_message ) {
    		$message = $error_message['message'];
    
    		if ( false !== strpos( $message, '__unfindable' ) ) {
    			$errors[ $index ]['message'] = ce_submissions_strip_unfindable_error( $message );
    		}
    	}
    
    	return $errors;
    }
    
    function ce_submissions_strip_unfindable_error( $message ) {
    	$fragments = explode( '</p>', $message );
    
    	foreach ( $fragments as $index => $single_message ) {
    		if ( false !== strpos( $single_message, '__unfindable' ) ) {
    			unset( $fragments[ $index ] );
    		}
    	}
    
    	return join( '</p>', $fragments );
    }
    
    add_filter( 'tribe_events_community_sanitize_submission', 'ce_submissions_require_venue' );

    Please let us know if it works.

    Thanks,
    Victor

    in reply to: Can’t set the venue field as required #1300969
    Victor
    Member

    Hi Jean-Marie!

    I’m sorry this issue is still present. Thanks for taking your time to let us know about it.

    I will take notice of this and add it to the bug report so it gets a second review.

    Regarding the date changing back to default upon failed submission, I could replicate myself and found a report about it. I will add this thread to it as well so we’ll let you know as soon as it is fixed.

    I apologise for these issues and we’d appreciate your patience.

    Best,
    Victor

    Victor
    Member

    Hi Thomas!

    Thanks for getting in touch! Let me try to help you with this.

    There is no built in way to do that, so you would have to make a template customization to do that by following our themer’s guide.

    You should check the single-venue.php template file located at/wp-content/plugins/events-calendar-pro/src/views/pro/. Inside it, you will find the following line of code that calls a function which returns the list of events:

    echo tribe_venue_upcoming_events( $venue_id, $wp_query->query_vars );

    I hope that helps! Let me know if any other questions.

    Best,
    Victor

    in reply to: Required Venue isn’t enforced #1300150
    Victor
    Member

    Hi David! 🙂

    I just wanted to let you know this issue is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    in reply to: Can’t set the venue field as required #1300146
    Victor
    Member

    Hi Jean-Marie! 🙂

    I just wanted to let you know we think this issue is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    Victor
    Member

    Hi There! 🙂

    I just wanted to let you know we think this issue is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    in reply to: Set default location for community event form #1300139
    Victor
    Member

    Hi There! 🙂

    I just wanted to let you know we think this issue is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    in reply to: Delete all missing ? Am I going mad ? #1300135
    Victor
    Member

    Hi There! 🙂

    I just wanted to let you know we think this issue is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    in reply to: Event description disappears on submit #1300112
    Victor
    Member

    Hi There! 🙂

    I just wanted to let you know we think this issue is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    in reply to: Edit or delete community events #1300111
    Victor
    Member

    Hi There! 🙂

    I just wanted to let you know the issue regarding the “no past events” message is no longer a concern with our latest feature release of Community Events 4.5. We encourage you to update to the latest version and try it out.

    To find out more about the release -> https://theeventscalendar.com/release-community-events-4-5-the-events-calendar-4-5-4-pro-and-community-tickets/

    We hope this update makes your site much better!

    As always, don’t hesitate to open a new topic if anything comes up and we’d be happy to help! 🙂

    Best!
    Victor

    Victor
    Member

    Hi Oliver!

    Thanks for following up!

    I’ve made a future request report to add those date formats options to the datepicker. This will still have to go over review by the dev team to see if it’s possible somehow.

    Having a closer look at the filter, I’ve just realised it will only be possible to take options out, but not actually create new formats, as this would also involve the need to modify the logic for those date formats in the plugins core files. So unfortunately, we currently have no options to add those date formats.

    We will get in touch with you once we have an update regarding the implementation of this options.

    Thanks for taking your time to let us know about this. Let us know if you have any other questions and we’d be happy to help.

    Best,
    Victor

Viewing 15 posts - 4,441 through 4,455 (of 5,398 total)