French category not showing up #1395
-
We discovered the plugin seems to support multiple languages tonight. Awesome! We are in Canada so this is great! We noticed one odd thing, however. When a French visitor goes to look for a French meeting there is no option to search for French meetings. It turns out there is not option to search for French meetings for an English speaker too, I just hadn't noticed it. So I went into the Meetings dashboard to see if the meetings were marked as French. They are not, although I could swear there were previously options for a handful of languages. In fact, all of the English meetings are successfully categorized as English even though we are not presented with the option to do so — so it must have been there at one point. Have I done something to reduce the options available? https://staging.debtorsanonymous.ca/ Thank you so much for your service! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Okay, this worked. But I decided it was problematic because it could be confusing for future web admins.
So I tried to create my own French and English meeting types specific to Debtors Anonymous, but I discovered this was not necessary.
When I added the following code to my functions.php in my child theme, it made the English and French settings appear even when set to Debtors Anonymous (sorry I can't figure out how to paragraph this code properly).
if (function_exists('tsml_custom_types')) { tsml_custom_types(array( 'EN' => 'English', 'FR' => 'French', )); }