Forum Replies Created
-
AuthorPosts
-
September 8, 2015 at 5:26 am in reply to: Breadcrumbs on event page / calendar page(view) doesnΒ΄t change #1002837
Nico
MemberHi 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,
NicoSeptember 8, 2015 at 5:18 am in reply to: Facebook Import non-vanity url and personal events #1002836Nico
MemberHey 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,
NicoNico
MemberHi 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,
NicoNico
MemberHi @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,
NicoSeptember 7, 2015 at 1:42 pm in reply to: Recurring Event Links Lead to Wrong Date in List Views #1002734Nico
MemberHey Nina,
Just posting here to keep this thread alive!
Best,
NicoSeptember 7, 2015 at 1:41 pm in reply to: 'No events scheduled for (date). Please try another day.' appearing in error #1002733Nico
MemberHey Diane,
Thanks for the heads-up on this! I’ll wait for your reply!
Best,
NicoNico
MemberThis reply is private.
Nico
MemberHi 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,
NicoNico
MemberHi 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,
NicoSeptember 7, 2015 at 1:09 pm in reply to: Filter Bar cause conflict when showing calendar view and single event view. #1002722Nico
MemberHowdy 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,
NicoSeptember 7, 2015 at 12:57 pm in reply to: I entered the licence but its giving me an error. #1002719Nico
MemberHowdy 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,
NicoPS: by your username I suspect you are a Spanish speaker, if you prefer we can continue this chat in Spanish.
Nico
MemberHi 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,
NicoNico
MemberHowdy 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,
NicoSeptember 7, 2015 at 12:34 pm in reply to: Display only current/upcoming week in list/map view #1002712Nico
MemberHowdy 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,
NicoNico
MemberHi 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 -
AuthorPosts
