• Resolved kavalieris

    (@kavalieris)


    Cant find in Loco translate some strings to translate like

    1. salary units – hour, month

    2. Job aplication form, even no one word cant find, checked all plugins and theme

    3. I dont know it bellongs to this plugin or not, but cant find “See more” to open all vacancies

    and “Load more posts”

    Maybe somone know how to tranlsate them in other way?

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • There is a code snippet?for translating strings in their documentation (included snippet below), which might be helpful. You can add additional?$translated?lines to the snippet, as below, to translate multiple strings, and you would add this code snippet to your child theme’s functions.php file or (if you prefer or don’t have a child theme) use the?Code Snippets?plugin:

    add_filter('gettext', 'translate_text');
    functiontranslate_text($translated) {
    $translated = str_ireplace('See more', 'All vacancies', $translated);
    $translated = str_ireplace('Load more posts', 'See all vacancies', $translated);
    return $translated;
    }

    Plugin Support lastsplash (a11n)

    (@lastsplash)

    Hi @kavalieris

    Are you still having trouble with this? We have some documentation on how to translate WP Job Manager that is worth reviewing if the suggestion above doesn’t work:

    https://wpjobmanager.com/document/translating-wp-job-manager/

    There are a few different options that you can use. If none of those work, you might try reaching out to the developers of your theme as they may be adding custom functionality. You can reach them at:

    https://themeforest.net/item/jobbox-career-portal-wordpress-theme/40022952/support

    Plugin Support Tamirat B. (a11n)

    (@tamirat22)

    Hello @kavalieris

    It’s been one week since this topic was last updated. I’m going to mark this thread as solved. If you have any further questions or need more help, you’re welcome to open another thread here. Cheers!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Translate’ is closed to new replies.