Nico

Forum Replies Created

Viewing 15 posts - 5,881 through 5,895 (of 6,506 total)
  • Author
    Posts
  • Nico
    Member

    Hi Thomas,

    Thanks for following up on this!

    So then you want to change the breadcrumb in month view -http://www.beikircher.de/events/2015-10/- to be as they are in list view? I’m not aware of how Avada is generating that title but maybe I can point you in the right direction.

    Breadcrumb also changes in past events view: http://www.beikircher.de/events/liste/?tribe_paged=1&tribe_event_display=past

    Please let me know about this,
    Best,
    Nico

    in reply to: Facebook Import non-vanity url and personal events #1002836
    Nico
    Member

    Hey Chris,

    Thanks for following up on this. Now I get you, but unfortunately I can’t find that feature in our product roadmap πŸ™

    You are welcome to suggest that in The Events Calendar user voice page, where we collect feedback from our users. I think other users might be interested in having that feature as well.

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

    in reply to: Pending events #1002835
    Nico
    Member

    Hi Karen,

    Thanks for following up on this! Now I understand why you where calling that HAVOC!!!

    That surely sounds like a bug for sure, and I would like to log it so it gets fixed! Can you try to recreate this in a test site and describe the process so I can reproduce it as well? This test site should be a clean WordPress install with default theme and only our plugins installed.

    Please let me know if you can manage to do that,
    Best,
    Nico

    in reply to: Czech Translation #1002828
    Nico
    Member

    Hi @DDawe93,

    Thanks for reaching out to us on this!

    We’ve put together a new site for translations, where you can create an account and help us improve the Czech translation. Please note that all of the plugin translations are provided by the community! Check out this article on Adding or Updating a translation for further details.

    Hope you can get that right,
    Best,
    Nico

    in reply to: Recurring Event Links Lead to Wrong Date in List Views #1002734
    Nico
    Member

    Hey Nina,

    Just posting here to keep this thread alive!

    Best,
    Nico

    Nico
    Member

    Hey Diane,

    Thanks for the heads-up on this! I’ll wait for your reply!

    Best,
    Nico

    in reply to: Map view displays only geoloc venues and events #1002731
    Nico
    Member

    This reply is private.

    in reply to: Link a new event to an existing ticket #1002728
    Nico
    Member

    Hi there @xrossglobalgroup,

    Glad to help you once again on this one!

    The table that links the event with the ticket is the wp_postmeta table. The SQL code to create that link is the following:

    INSERT INTO wp_postmeta ('meta_id', 'post_id', 'meta_key', 'meta_value) VALUES (NULL, -PRODUCT_ID-, '_tribe_wooticket_for_event', -EVENT_ID-);

    You can achieve the same thing via PHP, using the following code:

    function tribe_link_product_event ( $product_id, $event_id ) {
    if ( !in_array($event_id, get_post_meta( $product_id, '_tribe_wooticket_for_event')) ) {
    add_post_meta( $product_id, '_tribe_wooticket_for_event', $event_id );
    }
    }

    Please let me know if this helps you getting it sorted out,
    Best,
    Nico

    in reply to: Join event #1002725
    Nico
    Member

    Hi Kathy,

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

    This functionality is not part of our plugin -yet- but there’s a handy plugin called Event Rocket that provides some extra functionality to our Events Calendar. Among other things it enables a simple RSVP system.

    This feature is on our product roadmap and it’s planned to be out before the end of the year – so hopefully we will have that functionality integrated in our own plugin πŸ™‚

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

    Nico
    Member

    Howdy Aniello,

    Welcome to our support forums and thanks for reaching out to us. Sorry to hear about this issue, I’ll try to help you out on this one πŸ™‚

    Do you have many events on your website? By many I mean above 1,000? Timeout errors sometimes relate to performance issues. I’ve checked up your site but didn’t see the calendar installed, can you try to reactivate it? Also can you share your system information with me? Be sure of removeing the site lincese keys or mark the answer as private.

    Please let me know about those,
    Best,
    Nico

    in reply to: I entered the licence but its giving me an error. #1002719
    Nico
    Member

    Howdy Ricardo,

    Welcome to our support forums and thanks for reaching out to us. I’ll help you out getting this sorted πŸ™‚

    You can’t use the same license for the two sites, but hopefully the process of moving the license key is fairly simple. Check out this article Moving your license keys, for the details on how to do this.

    Please give that a try and let me know,
    Best,
    Nico

    PS: by your username I suspect you are a Spanish speaker, if you prefer we can continue this chat in Spanish.

    in reply to: targetting css for archive tage #1002716
    Nico
    Member

    Hi John,

    Thanks for reaching out to us! I’ll help you getting this sorted πŸ™‚

    The correct code would be:

    body.archive article.tribe_events img {
    display: inline-block;
    float: left;
    margin-right: 2em;
    margin-left: 1em;
    margin-top: 1em;
    max-width: 300px;
    }

    Please give it a try and let me know if this is what you where looking for,
    Best,
    Nico

    in reply to: Calendar Page not formatting correctly #1002714
    Nico
    Member

    Howdy Raylene,

    Welcome to our support forums and thanks for reaching out to us. Sorry to hear about your issues, I’ll help you out on those!

    I enter the information but it does not display on the main calendar page as I typed it in the text block in WP

    Can you point me to the page you refer to? Can you describe what’s not showing up correctly?

    Also, the text changes color on different links on the calendar page.

    You can change these text colors via CSS, you can take a look at our Themer’s guide before doing so. If you don’t feel comfortable at all with coding you can point me the texts you want to change and I can craft the CSS code for you.

    Please let me know about those,
    Best,
    Nico

    in reply to: Display only current/upcoming week in list/map view #1002712
    Nico
    Member

    Howdy Yann,

    Welcome to our support forums and thanks for reaching out to us!

    I think the best way to tweak this would be to modify the query before it get’s the posts. This snippet will surely get you on the right path:


    add_action( 'tribe_events_pre_get_posts', 'upcoming_two_weeks' );
    function upcoming_two_weeks( $query ) {

    if ( defined( 'DOING_AJAX' ) && DOING_AJAX && $query->get('eventDisplay') == 'map' ) {

    $end_time = strtotime('+2 weeks');
    $end_date = date("Y-m-d G:i:s", $end_time);

    $query->query_vars['meta_query'][] = array('key' => '_EventStartDate', 'type' => 'DATETIME', 'compare' => '<', 'value' => $end_date);
    }

    return $query;
    }

    Add this code to your functions.php file -located at wp-content/themes/your_theme/- and you should see Map view upcoming events limited to two weeks from the current date. Haven’t fully tested it, but seems to work fine!

    Please let me know if you can implement this fix,
    Best,
    Nico

    in reply to: Display default text depending on category #1002706
    Nico
    Member

    Hi Gerry,

    Thanks for reaching out to us! Hopefully I can help you out on this πŸ™‚

    Can you try changing is_category to has_category? The first on checks is the page is a category archive -which is not- while the later checks if post has the category you are passing to the function.

    Please try that out and let me know,
    Best,
    Nico

Viewing 15 posts - 5,881 through 5,895 (of 6,506 total)