An additional question about my previous topic https://kriesi.at/support/topic/my-enfold-main-menu-selection-is-not-working/#post-485867
Hi;
I couldn’t find “Want to join the discussion?“ and “You must be logged in to post a comment.” sentences in latest tr_TR.po file. So I can’t translate them to Turkish. How can i change these two sentences?
I have another new question. As i told you before, I use my web page in English and Turkish. I downloaded Zen Menu plugin according your advice for 2 language menu support. Enfold has a feature, you can go to the next or previous posts by clicking the right or left side of the page. But while clicking this buttons it goes directly the next or previous posts without looking it’s language. Is there any setting to adjust these buttons functions? Or is there any plugin that i can use?
Thanks;
Hande
Hi Hande!
1. You won’t find those strings in the theme files because those are part of the WordPress core, try setting Turkish as the language for your install in Settings > General.
2. Try creating a category for each language and group the Posts accordingly, then add this to your theme / child theme functions.php:
add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
function avia_same_category_filter($settings)
{
$settings['same_category'] = true;
return $settings;
}
Regards,
Josue