Nico

Forum Replies Created

Viewing 15 posts - 3,466 through 3,480 (of 6,506 total)
  • Author
    Posts
  • in reply to: Can I display the number of events on the front end? #1129553
    Nico
    Member

    Thanks for following up Brendan! To see if it’s event returning something or not, let’s do the following:


    function tribe_user_events_count ( ) {

    if ( $user_id = get_current_user_id() ) {

    $events = tribe_get_events( array( 'author' => $user_id, 'eventDisplay' => 'upcoming' ) );

    echo 'User events: ' . count ( $events );
    } else {
    echo 'No user is recognized: ' . get_current_user_id();
    }
    }

    Also, make sure the user has created at least 1 upcoming event. If you want to get all events for that user not just the upcoming ones, then make the following change:

    $events = tribe_get_events( array( 'author' => $user_id ) );

    Please let me know about the result of using the modified version of the function above,
    Best,
    Nico

    in reply to: Ticket Fieldsets #1129549
    Nico
    Member

    Hi Dylan,

    Thanks for reaching out to us on this! I’ll help you out…

    I guess the simplest approach would be to just change the style attribute of the element containing the meta fields to make it visible. For example: if my ticket ID is 12 then the element id would be tribe-event-tickets-plus-meta-12, and changing the style attribute from display:none; to display:table-row; should do the trick.

    Please let me know if this works for your customization,
    Best,
    Nico

    in reply to: Tribe/RSVP.php Function #1129521
    Nico
    Member

    Hi Guillaume,

    Thanks for reaching out to us! I’ll help you here…

    Let me start by saying I’m not 100% sure of what you are looking for. Event Tickets (which I see you have installed) allows you to add RSVP ticket to events, take a look to the video in the product’s page to know how it works.

    Sorry if you are already aware of how it works, if that’s the case please to elaborate a bit more on what you are looking for.

    Best,
    Nico

    in reply to: Bug: ticket sales and stock filter not showing #1129512
    Nico
    Member

    Hi there Thomas,

    Thanks so much for the report and sorry for the hassle! This is actually a known bug that has been reported shortly after the release. A fix will be included in maintenance release 4.2.1 coming out this week so this should be solved in a few days.

    Please let me know if it’s fixed for you after updating,
    Best,
    Nico

    in reply to: PRO widget template #1129506
    Nico
    Member

    Hi there,

    Thanks for reaching out to us! I’ll help you here…

    To modify the output of the advanced list widget you’ll need to create a template override of the file: wp-content/plugins/events-calendar-pro/src/views/pro/widgets/modules/single-event.php. Once the override template is in place you can move the code blocks as needed. I think the date, title and location block are pretty easy to recognize, but please let me know if you need further help on this.

    Best,
    Nico

    in reply to: Date – To and From Selector #1129500
    Nico
    Member

    Hi Andrea,

    Thanks for reaching out to us and for you interest in our products πŸ™‚

    Right now this is not possible by default with our products, but could be done with some custom work. Here we have a list of folks that do custom development for our customer sites. You are also welcome to suggest this feature request at The Events Calendar user voice page, where we gather feedback from our community.

    Please let me know if there’s anything else I can do for you,
    Best,
    Nico

    in reply to: Event time being displayed as date #1129490
    Nico
    Member

    Hi Anju,

    Thanks for reaching out to us! Unfortunately we are not able to provide support in the pre-sales forum πŸ™

    We are happy to assist our premium users with support issues via our premium forums, please log into the account that has been created when the purchase was made. If you have not purchased one of our premium plugins, you can post in our open source forum. We review that forum weekly, mainly for bug reports.

    I’ll go ahead and close out this thread, but please do post in the appropriate forum and we will be happy to assist you.

    Best,
    Nico

    in reply to: Get Attendee List for Event #1129484
    Nico
    Member

    Perfect Dan! Glad to see you could figure it out πŸ™‚

    I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.

    Best,
    Nico

    Nico
    Member

    Thanks for following up!

    Just to be clear we can help premium users with this type of customization / snippets. This idea in UserVoice seems to be related to what you are asking for.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    Nico
    Member

    Hey Hans,

    Glad to help you on this issue as well πŸ™‚

    You can hide it via CSS, just include the snippet below in your theme (or child theme) stylesheet or via Simple Custom CSS plugin:

    .tribe-tickets-attendees-list-optout {
    display: none;
    }

    That should do the trick,
    Best,
    Nico

    in reply to: Brazilian Digital Market – Partnership #1129065
    Nico
    Member

    Hi Luciana,

    Thanks for reaching out to us and for your interest in our business!

    You can send over you proposal and CV to support at theeventscalendar dot com.

    Please let me know if there’s anything else I can do for you,
    Best,
    Nico

    Nico
    Member

    Hi Hans,

    Thanks you very much for the report and for helping us translate our plugins πŸ™‚

    As you say I see the correct translation in place in the translation page for that string so this is indeed just a matter of re-fetching the translation files and ship them in the zips. This happens in every release so yeah, just a matter of time. Version 4.2 was shipped on June 8, a couple of days before the translation was added.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: Hide Event Cost? #1129060
    Nico
    Member

    Hey Michael,

    Thanks for reaching out to us and for the heads-up later πŸ™‚

    Please let me know if you can configure the plugins to suit your needs or if you still need help,
    Best,
    Nico

    in reply to: Can I display the number of events on the front end? #1129059
    Nico
    Member

    Hi there Brendan,

    Thanks for reaching out! I can help you here…

    Use the snippet below to echo the amount of upcoming events for the current logged in user (if any):


    /* Tribe: print active events count for current user if logged in */
    function tribe_user_events_count ( ) {

    if ( $user_id = get_current_user_id() ) {

    $events = tribe_get_events( array( 'author' => $user_id, 'eventDisplay' => 'upcoming' ) );

    echo count ( $events );
    }
    }

    add_action( 'tribe_events_before_template', 'tribe_user_events_count' );

    This will show before events views, just as an example. You can change the action or place a call to the function tribe_user_events_count in the desired template.

    Please let me know if this works for you,
    Best,
    Nico

    in reply to: Calendar Page Title #1129056
    Nico
    Member

    Hi Gene,

    Thanks for reaching out! Interesting suggestions here, let’s jump into those:

    Setting calendar view titles

    We have an article describing how to do this: Changing the browser title for calendar views. That should help you out!

    Full views shortcodes

    This is on our roadmap for upcoming major release 4.3 (August). This is the initial plan and might change in the future, but hopefully we’ll see this feature included in the near future!

    There’s a third party plugin for this: The Events Calendar Shortcodes. Personally I haven’t tried it out and of course we cannot support it, but it might help until we have this in our own codebase.

    Please let me know if this answers your questions,
    Best,
    Nico

Viewing 15 posts - 3,466 through 3,480 (of 6,506 total)