Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi,
Pro should be fixed now. I just tested it.
We have no control over The Events Calendar translation on WordPress.org and so far not been able to get a hold of anyone to change that download name.
For now the downloaded translation file will have to be changed by you until we can see if even possible to get it changed.
Sorry for the inconvenience. The team is aware of this and when we reevaluate if we want to continue using WordPress.org for the translation and this information is something we will take into account.
Thanks
October 6, 2015 at 12:20 pm in reply to: Missing translation for recurring events in the Community Events Submit form #1012023Brian
MemberYou’re Welcome,
I am going to close this ticket to new replies, but the issue is still open in our bug system to resolve.
We will update this ticket directly when we have a release to fix it.
If something new comes up in reference to this or something else please create a new ticket and we can help you out.
Thanks
October 6, 2015 at 12:20 pm in reply to: Translation of "Delete image" missing in community events submit form #1012022Brian
MemberYou’re Welcome,
I am going to close this ticket to new replies, but the issue is still open in our bug system to resolve.
We will update this ticket directly when we have a release to fix it.
If something new comes up in reference to this or something else please create a new ticket and we can help you out.
Thanks
October 6, 2015 at 8:23 am in reply to: Recurring events look different in event list on home page #1011930Brian
MemberHi,
Thanks for using our plugins. I can try to help out here.
It looks like Enfold has some customizations to our widget causing the recurring information to always show.
I could not see a good css solution due to customizations.
However, adding the following to the List Widget Template Could Help.
That template is found here in your theme:
your-theme/tribe-events/pro/widgets/list-widget.php
Since there is a customization here I am not exactly sure what the coding looks like, but add this coding:
//Disable Tooltips
$ecp = Tribe__Events__Pro__Main::instance();
$tooltip_status = $ecp->recurring_info_tooltip_status();
$ecp->disable_recurring_info_tooltip();
Right under this coding:
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
And then adding this coding at the end of the file:
// Re-enable recurring event info
if ( $tooltip_status ) {
$ecp->enable_recurring_info_tooltip();
}
Could turn off that recurring event information and fix this.
Beyond that I can try to help out, but limited in resolving issues on custom coding from a theme.
However, let me know how this works out.
Thanks
Brian
MemberHi,
Thanks for purchasing our plugins. I can help out.
Right now there are no plans to use RSS feed to add events to our plugins.
We do have the iCal Importer, which you purchased and that does have recurring imports so you can pull in new events as they are created from a iCal Feed on a schedule.
Do you think that would work?
Thanks
October 6, 2015 at 7:54 am in reply to: Snippet or function to hide the Ticket Header in the backend? #1011915Brian
MemberI guess I should have tested on an event with tickets.
I modified the css in my original snippet. Let me know if that works.
It hide the header image for me, but showed the tickets.
Cheers
Brian
MemberHi,
This is a duplicate of this thread:
So I am going to close it and we will continue to help you out there.
Thanks
Brian
MemberGreat glad it helps.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberYou’re Welcome.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
October 6, 2015 at 7:36 am in reply to: Exclusions still not working on daily recurring event #1011905Brian
MemberHi Nadia,
Sounds good about the work around.
As I mentioned I have created a bug ticket for us to address this.
I am going to close this ticket to new replies, but the issue is still open in our bug system to resolve.
We will update this ticket directly when we have a release to fix it.
If something new comes up in reference to this or something else please create a new ticket and we can help you out.
Thanks
Brian
MemberHello,
Ok I am not able to replicate the issue.
As they are warnings it will only show in the error log and not break the site or prevent it from loading a page.
If you can clear the error log and then try creating an event or two and see if an error appears after, it would help narrow this down.
Or do the same process and try updating a couple events especially the recurring events and see if it appears that way. You do not have to change the event just click update in it.
Let me know what you find out.
Thanks
Brian
MemberGreat glad it all worked out.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
October 5, 2015 at 4:39 pm in reply to: Event Submission overwriting bottom Widget in Theme #1011665Brian
MemberOh I see it now.
I was not looking for that.
It could be that after the submit the loop is not being reset so it still thinks the page is the id.
See if adding this snippet to your theme’s functions.php resolves the issue:
/*
* Reset Post Data After Community Form
* @version 1.0
*/
add_action( 'tribe_events_community_form_after_template', 'tribe_reset_query_after_community' );
function tribe_reset_query_after_community() {
wp_reset_postdata();
}If that does not work I have one other snippet to try after that if it still does not work that widget might have to be modified to directly use the id for the excerpt to get around this.
Let me know.
Thanks
October 5, 2015 at 4:33 pm in reply to: Snippet or function to hide the Ticket Header in the backend? #1011662Brian
MemberHello,
Thanks for your reply today with the other user.
I can help out here.
There is not filter or action to be able to remove this section.
However, I got this CSS to work for me.
Add this to your theme’s functions.php and it will only load on the Single Event Editor.
/*
* Hide Ticket Header
* @version 1.0
*/
add_action( 'admin_head', 'tribe_hide_ticket_header' );
function tribe_hide_ticket_header() {
$screen = get_current_screen();if ( 'tribe_events' == $screen->id ) {
echo '';
}
}
Let me know how that works out.
Thanks
Brian
MemberHi Again,
Right now there are no plans to connect to Product Vendors or WC Vendors Plugin. Although I can see how that would help run a site.
The plan for the plugin right now is to get the current beta features released. Beyond that I do not have a timeline for the future of the product right now.
Let me know if you have any follow up questions.
Thanks
-
AuthorPosts
