jvier
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Error 500 when deleting and editing eventsIt seems the error is with a file wich is part of the translation plugin WPML and sends the following error when deleting certain events:
Fatal error: Class ‘Tribe__Tickets__RSVP’ not found in wordpress\wp-content\plugins\woocommerce-multilingual\compatibility\class-wcml-the-events-calendar.php on line 127
Disabling the WPML plugin does solve the issue but we need said plugin to be enabled.
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Translation support?Yes, it works perfectly now both the categories and the colors. Thank you.
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Translation support?It keeps adding regardless.
I think maybe it’s because I add the filter to the wrong file, what file are you editing it in?Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Translation support?Using the updated plugin and the add_terms filter don’t seem to have changed anything besides the fact that the add_terms filter keeps adding categories everytime the calendar page is loaded.
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Translation support?I’m afraid I don’t know how to get the variables from the plugin. If you could reference me to a tutorial or plugin that does this I’ll provide the variables.
Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Translation support?I tried applying the code you sent me (putting the category slugs in the ‘translated_termx’ slots) and it does spread the colors to the translations but the calendar disappears completely from the frontend only leaving the legend categories.
I entered the code as follows,add_filter( 'teccc_get_terms', 'wpml_translated_tec_category_slugs' ); function wpml_translated_tec_category_slugs( $all_terms ) { $translated_terms = array( 'atelier-cuisine-en-anglais', 'atelier-cuisine-en-espagnol', 'atelier-cuisine-en-francais', 'cooking-classes-in-english', 'cooking-classes-in-french', 'cooking-classes-in-spanish' ); $merged_terms = array_merge( $all_terms, $translated_terms ); return $merged_terms; }Forum: Plugins
In reply to: [The Events Calendar: Category Colors] Translation support?Hi, sorry for the delayed response.
I’m not sure what you mean by “a function that can get all the translated category terms”.
Do you mean it as in “a function that lets you edit the translated category themes”. Because in that case there is one.