Nico

Forum Replies Created

Viewing 15 posts - 3,706 through 3,720 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    Thanks for the detailed follow-up!

    In my case $parent_id is always the $event_id at this point, as none of the events have $post->parent set.

    This sounds very weird, because recurring events do have a parent which is is the main event of the series. Basically this is how events in a series are linked, so if posts that are part of a series don’t have a parent there’s def something going on!

    Are you testing this in the single event page? Can you try adding this snippet in the theme (or child theme) functions.php file?


    function print_event_parent ( ) {

    var_dump( wp_get_post_parent_id( get_the_ID() ) );

    }

    add_action ( 'tribe_events_single_event_before_the_content', 'print_event_parent' );

    Can you give this a try with the main event in the series but also with upcoming and passed instances of the same event? That should dump the ID of the parent event. If there’s some oddness still we can manage to do this in a different way from the snippet.

    Please let me know about it, but I’m mostly sure I’ll need to re-factor the snippet if the parent is being printed as 0!
    Best,
    Nico

    Nico
    Member

    Thanks for following up Nick, I have mixed feelings about the outcome of the test: glad it’s not an issue with multisite feeds, but sad to hear it’s still an issue!

    Do you have a local copy of the site where you can double check this? Maybe just a test site or network? My guess is it might be related to server side / php settings, so if you have another server were you can test this it will be great! Also, was this working before this issue came up? Maybe it was never tested?

    Nico

    in reply to: Show Recurring Events #1116426
    Nico
    Member

    Thanks for following up Oliver!

    Still not 100% sure about this, but I guess you want to display all the recurrences for the listed events (upcoming). This is the default behaviour but maybe you are using the options to hide recurring event instances. Go to WP-Admin > Events > Settings > General > Recurring event instances and make sure that option is unchecked.

    Please let me know about it,
    Best,
    Nico

    Nico
    Member

    Hi Matt,

    Thanks for following up and sorry for the delay in my reply! I could reproduce this bug locally, you are right about it πŸ™

    We fixed this a while back but it seems to pop-up again. I’m talking with devs to see if this is the same issues again or a different one.

    I’ll give you a heads-up as soon as possible!

    Best,
    Nico

    in reply to: Translation in tribe tickets meta row #1116372
    Nico
    Member

    Wow sorry to hear Manuela!

    I’m not sure about it, it’s working fine in my local install and the original snippet is used by many folks and don’t seem to cause this issue. Maybe there’s a formatting issue whn you copied over to your functions.php file? Can you delete the snippet and re-past from the embed below?

    https://gist.github.com/niconerd/8fa951807ea0e1f89a930602c2962ad2

    Please let me know about it in case there are still issues please send me a copy of your functions.php file in a private reply,
    Best,
    Nico

    in reply to: Update on tag queries? #1116367
    Nico
    Member

    Thanks for the kind words and for understanding it’s not so easy to fit all fixes right way into the plugin codebase!

    Do you want me to keep this thread open or are we good to close it? You can stay tuned to the changelogs to see when this is fixed anyway.

    Please let me know about it,
    Best,
    Nico

    in reply to: remove your powered by footer #1116365
    Nico
    Member

    Nice to hear Arwyn!

    Regarding your follow-up questions I’m not sure what you want to achieve. Can you elaborate a bit more? Are you looking forward to sell coupons to be used to book events later on?

    Best,
    Nico

    in reply to: community events do not show up in events calender #1116360
    Nico
    Member

    Glad to hear Peter πŸ™‚

    It’s not stupid at all! You are right both plugins have almost the same name and it can be indeed confusing. But I guess there’s not much we can do about it!

    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 JΓΆrg!

    Unfortunately we cannot a feature that it’s still not implemented πŸ™

    Even if we could fix this it’s pretty likely you’ll start seeing small glitches like this one in different places. Stock in one of the biggest challenges of implementing ticket support for recurring events, but there other sides we need to polish as well.

    Sorry for not having a better answer for this at the time.

    Best,
    Nico

    in reply to: Edit Tribe Events Bar #1116345
    Nico
    Member

    Hey glad to hear we are close to nail this!

    As both texts use the same translation you’ll need to add an extra snippet to change one of them:


    /**
    * Modify tribe bar search input label
    */
    function tribe_modify_bar_search_placeholder ( $filters ) {

    if ( isset ( $filters['tribe-bar-search'] ) ) {
    $filters['tribe-bar-search']['caption'] = 'Another string';
    }

    return $filters;
    }

    add_filter('tribe-events-bar-filters', 'tribe_modify_bar_search_placeholder', 10 , 1 );

    Please let me know if this works as expected now,
    Best,
    Nico

    Nico
    Member

    Thanks for following-up!

    Are you saying that the absence of some metadata will cause the event to not update correctly?

    Yes, by this I mean that there’s some specific metadata to events like EventStartDate and EventEndDate that are required. You’ll need to add those parameters for the event to display, be sure to check the function docs: tribe_create_event. Are you passing those to the function?

    It’s ok, maybe there’s no need to share the code if it’s super lengthy πŸ˜‰

    Best,
    Nico

    in reply to: Error in displayed price #1116341
    Nico
    Member

    Hi Emilie,

    Thanks for following-up! I reviewed the code provided in past threads and it seems that the function tribe_get_maximum_cost is in fact providing the highest cost of all events. So there’s seems to be no error here, to get the max cost of the event you are viewing you’ll need to do the following:

    Add this snippet to your theme functions.php file:

    function tribe_get_max_cost_single ( ) {

    $tribe_ecp = Tribe__Events__Main::instance();
    $post_id = $tribe_ecp->postIdHelper( null );

    $cost_utils = Tribe__Events__Cost_Utils::instance();

    $costs = $cost_utils->get_event_costs( $post_id );

    if ( ! $costs ) {
    return '';
    }

    return tribe_format_currency( $cost_utils->get_maximum_cost( $costs ) );

    }

    Once that’s in place just go ahead and replace the previous code in the single-event.php for this one:

    <span class="tribe-events-cost"><?php echo tribe_get_max_cost_single( ) ?></span>

    Give it a try and let me know about it,
    Best,
    Nico

    in reply to: Ticket Selling #1116321
    Nico
    Member

    Hey Cissy,

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

    Basically to sell tickets for events via PayPal you’ll need to use The Events Calendar + Event Tickets + Event Tickets Plus + E-commerce Plugin. Event Tickets Plus works together with an e-commerce plugin to enable payments (you can choose one from WooCommerce, Easy Digital Downloads, WP-Ecommerce or Shopp). Events Calendar PRO is not needed for this to work.

    I don’t have much to say about EventOn as it’s a third party plugin, just be sure that this plugin doesn’t conflict with ours!

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

    in reply to: Maximun tickets per user/person #1116314
    Nico
    Member

    Hi Antoni,

    Thanks for reaching out and for your interest in our products!

    Basically there’s no option to do this from our plugin. Cart, checkout and order management is configured from the e-commerce plugin of your choice (WooCommerce, Easy Digital Downloads, WP-Ecommerce or Shopp). For example the Min/Max Quantities plugin for WooCommerce adds this functionality (more info on Woo extensions compatibility).

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

    in reply to: Facebook Events #1116311
    Nico
    Member

    Hi there Stefan,

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

    Facebook Events works with the core/free version of The Events Calendar, there’s no need to install Events Calendar PRO for it to work.

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

Viewing 15 posts - 3,706 through 3,720 (of 6,506 total)