RTL in posts only [closed]
RTL in posts only [closed]
RTL in posts only [closed]
Website Language/Locale Switching
white space appears when switch to rtl
You need to hook into get_avatar() somewhere. There are plenty of options: get_avatar() itself is pluggable, so you can just replace the function wholesale but it assembles the <img> tag from, so it might be simpler to hook into get_avatar_url(), which itself is just a wrapper around get_avatar_data(), and leave get_avatar() to still build the … Read more
How to make a multilingual wordpress site to be translated one-to-one without much effort and without using translate?
site with two diffrent menus for difftent pages?
Fatal Error WordPress Custom Post Type UI + WPML
How to translate the blog date in the Avada theme [closed]
Have you tried [de]Deutsch title here[/de][en]English title here[/en] in the name field? (obviously [de] is for German language, replace these with the desired language codes)
I haven’t seen all files in your attachment, some directories are not included, so this is just a guess: Create a directory languages in the theme for the language files. Add the following to the style.css header below License URI: Textdomain: jobroller Domain Path: /languages In functions.php add: add_action( ‘after_setup_theme’, ‘jobroller_load_language’ ); function jobroller_load_language() { … Read more