Forum Replies Created
-
AuthorPosts
-
Nico
MemberHey Michael,
Thanks for sending the screenshot I get what’s happening now!
This was a bug in a previous version of the plugin (and a fix was introduced as well), as I see you registered just a couple of days ago I imagine you are running the latest versions of the plugins, but please double check on that. This is the fix I’ve provided in past: https://theeventscalendar.com/support/forums/topic/html-shows-as-text/#dl_post-1003968
Please let me know if you are running latest version of the plugins and you can reproduce this with default WordPress theme and no other plugins active. In that case this bug might have been re-introduced,
Best,
NicoNovember 19, 2015 at 8:35 am in reply to: Add button above attendee table in woocommerce tickets #1028137Nico
MemberHi Erico,
Thanks for reaching out! Interesting question here ๐
Hopefully this is possible by adding a filter to tribe_events_tickets_attendees_table_nav like shown below:
add_filter( 'tribe_events_tickets_attendees_table_nav', 'attendees_table_add_button', 10, 2 );function attendees_table_add_button ( $nav, $which ) {
$nav['left']['extra'] = sprintf( '%s', esc_url( 'http://tri.be/' ), 'Extra' );
return $nav;
}
Please try the snippet out and let me know if it works for you,
Best,
NicoNico
MemberHey Maciej,
Glad to hear you could solve this ๐
I’m afraid there’s no configuration for just displaying “your” venues and organizers. One way to modify this is to override the template part where the list is loaded, and replace that for your own combo box. The templates for venue and organizer lists are located at ‘wp-content/plugins/the-events-calendar-community-events/src/views/community/modules/’, the process to override templates is described in our Themer’s guide, take a look or share that information with your dev.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHey Rick,
Not yet, but we are actively looking for the origin of this bug. As noted above this is not an easy issue for us to look into. Additional tests for duplicates are being set and also if anyone is willing to set up a test site where this can be reproduced with default TweentyFifteen theme and no other plugins active (but our), we will be happy to take a look to the site and db’s exports.
I really hope we can hunt this tricky bug soon,
Best,
NicoNico
MemberNo problem Aj, thanks for keeping me posted!
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,
NicoNico
MemberHi Adage,
Thanks for the heads up, and glad to hear this is solved ๐
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,
NicoNovember 18, 2015 at 2:19 pm in reply to: How to manually install Events Calendar Pro on test site when there is a Live #1027743Nico
MemberHey David,
Thanks for reaching out on this! Hopefully there’s an article explain how to Move your license keys from the live site to the staging instance. I guess that’s the best way to achieve this, another way would be to download the plugin ZIP and manually update it.
Please let me know if you still have doubts on this after going through the articles,
Best,
NicoNico
MemberHi Katherine,
Thanks for reaching out to us, and also for your interest in our products!
You are right about the pricing of our products, it’s $89 each. Events Calendar PRO doesn’t come with filtering options specifically but it includes a ‘search bar’ to narrow down results, take a look: https://cloudup.com/c6X_pWl669l
There’s also a third-party plugin called Category Colors which displays event categories under the search bar, before the calendar. I guess if you need advanced filters, Filter Bar is the right choice! Also please note that you can run Filter Bar plugin without having Events Calendar PRO enabled on the site.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHi Evan,
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. If you have not purchased one of our premium plugins, you can post in our open source forum. We review that forum weekly.
Short answer is this is not possible by default, but one of our support team members might be able to point you in the right direction on how you can achieve this customization.
Best,
NicoNico
MemberHi Percy,
Thanks for you interest in our products! I’ll help you how this is possible in our calendar.
Take a look at our demo site: http://wpshindig.com/events/, per default the events are shown in a month grid. At the bottom you’ll see two links to navigate to previous / next months, as long as future events exist.
Please let me know if this answers your question, and also if I can help you with anything else,
Best,
NicoNico
MemberHey Michael,
Glad to help you with this issue as well. Can you please resend me the screenshot? I’m not able to see the image. You can upload it to cloudup.com or any other iamge sharing service and share the link with me.
Best,
NicoNico
MemberHi Natalie,
Thanks for reaching to us! Hopefully I can helo you getting this right ๐
To change how address is displayed in the Single Event Template you’ll need to create a template override of the ‘address.php’ file, located at: ‘wp-content/plugins/the-events-calendar/src/views/modules/address.php’. The process for creating a template override is described in our Themer’s guide but if you need further assistance on it, just let me know.
Best,
NicoNovember 18, 2015 at 12:51 pm in reply to: Disabling tribe-events-nav-next / tribe-events-nav-previous #1027702Nico
MemberHi Michael,
Thanks for reaching out to us! I’ll help you here…
The easy way to achieve this is to visually hide it via CSS, adding this snippet to your theme/child theme stylesheet or via Simple Custom CSS plugin:
.single-tribe_events #tribe-events-footer {
display:none;
}
If you are just willing to hide this for specific events you can target those via post-ID, like this:
.postid-999 #tribe-events-footer {
display:none;
}
Finally if you need to select which events to hide this from the back-end you can add a custom field (or PRO additional field) and make a check for this value in the Single Event Template (view the Themer’s guide for details on how to edit templates).
Please let me know if you can implement this fix or still need assistance,
Best,
NicoNovember 18, 2015 at 12:35 pm in reply to: Import XML with links to photo, and show photo in the calendar ? #1027696Nico
MemberHi Tom,
Thanks for getting in touch! I’ll try to help you here…
I assume you are processing the XML and turning that data into a CSV file, right? Regarding the image import, unfortunately that’s not possible right now. This has been suggested in The Events Calendar user voice page: http://tribe.uservoice.com/forums/195723-feature-ideas/suggestions/6834910-import-a-featured-image-via-csv, you are welcome to up-vote it and/or adding a comment on why this feature would be important to you.
This article goes over the possibilities of the CSV importer: CSV Importer: Fields and Example fields. A work around might be to create an additional field and store the image URL in that field to show it in the Single Event Template (check out our Themer’s guide for details on this), but importing the image and store it in your site is not possible.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHey Aj,
Thanks for reaching out and sorry about the hassle getting this right! I’ll help you here…
First of all I’m not sure about the price range you are needing you to display. I mean if you only have one product (ticket type) why are you looking for displaying a cost range? Understanding this might lead me to find a simpler solution. Also can you point me to previous thread you mention?
I had to create different products in Woocommerce (basically the same except the price) but when it displays in Event Calendar it shows one (random) price, but also has no booking link.
Not sure what you mean that in Events Calendar it shows only one… Is that in the back-end or the front-end?
Sorry for the many follow-up questions, I just want to make sure I get this issue right,
Best,
Nico -
AuthorPosts
