This doesn’t have much to do with Genesis, other than you need to hook into the header in one of several ways, with Simple Hooks http://wordpress.org/plugins/genesis-simple-hooks/ or in functions.php. I’ll leave that to you.
But using
<?php echo qtrans_getLanguage(); ?>
do something like this:
$currentLang = qtrans_getLanguage();
if($currentLang == 'fr')
{ //show french logo
$imageName = logoFR.png';
} else
if($currentLang == 'hi')
{ //show Hindi logo
$imageName = logoHI.png';
} else { //show english logo to rest
$imageName = logoEN.png';
}
Or, name your images appropriately:
<img src="http://mysite.com/logo-<?php echo qtrans_getLanguage(); ?>.png" />
Related Posts:
- How to force WordPress to temporarily switch locale (using qTranslate)? [closed]
- Disable qTranslate by post type in admin + disable per page / post ID on front-end [closed]
- Qtranslate displays empty categories with get_categories()
- Custom values are not translated
- titles in recent posts appear together in all languages with qtranslate
- Plugin translations problem
- How to set a custom title per language?
- How to enable qTranslate languages tabs in custom plugin page
- qTranslate conflicts with SEO-plugins [closed]
- Multi language site [closed]
- How to merge two .PO language files?
- qTranslate remove default directory from link
- How can i change the texts of plugin (created by me) in wordpress admin?
- Translating Website
- How to overlay a webcomic plugin on top of a header image?
- qTranslate‑X is not translating all shortcodes
- Disable /wp-admin/plugin-install.php
- Removing the “Your backup folder MIGHT be visible to the public” Message Generated by the WP-DBManager Plugin
- Plugins not showing in dashboard->plugins section
- Reordering themes in admin panel
- How do I email a new page password to somebody every month?
- Gutenberg: How to use output of php render_callback function in the block editors backend?
- Custom database or Custom Post Types?
- How do I extract the Alt Text from an image attachment upload via the WordPress Options Framework Plugin?
- Visual Composer vs. Advanced Custom Fields [closed]
- Themes VS Plugins [duplicate]
- How to load plugin before the wordpress jquery?
- Why is my ajax call refreshing the page?
- Add CSS class to add-to-cart button, Woocommerce [closed]
- How to count number of records found in a database table?
- Can a WordPress plugin or theme contain a virus?
- Advanced Custom Fields query
- What is the way to ship read-me strings like plugin-strings for internationalization?
- Upload file inside plugins options page
- Best method to upgrade multisite plugin’s numerous database table
- Activated plugin is stored as an object, rather than as a path
- Problem converting tags to categories while having large number of tags
- Overriding functions in wordpress plugins
- Color java code the way it is colored in eclipse [closed]
- What is generating my meta og:description?
- Certain actions failing when run through cron
- Send Custom welcome email to specific user group
- Add content to footer – above wp_footer
- Automatically populate title field
- Customize The Events Calendar to Include an Option to Expand for More Events Listings
- Hook into existing tinyMCE button
- Does the lazyload plugin make this server disks busy?
- Load Javascript from Plugin in One Page Only?
- How does one include the JQuery UI plugin to wordpress and enque it correctly in a plugin form?
- Invalid plugin installation directory, Google Analytics [closed]
- Custom url rewriting
- How can I exclude a dynamic URL to show a popup created using ‘WordPress Popup’ plugin
- How can I apply a WP filter on specific plugin version
- How to create Admin Notice from Plugin with argument? [duplicate]
- Why are my WordPress store items showing up in duplicates?
- Can I do in-page changes binding events/triggers to actions in WordPress?
- Can inactive WordPress plugins still load scripts?
- Change the number of plugins counted on wp-admin/plugins.php
- How to have free shipping for WooCommerce Membership members
- Can i use init hook for API purpose?
- JSON API Plugin not showing Attachments id reused
- What’s the right way to implement functions in footer.php
- What hook can I use to modify custom post data before it is displayed on the page?
- reCAPTCHA on page template without plugin
- get current page number with wp_link_pages()
- Some images on WordPress site are suddenly gone
- How do I reliably find a URL to a script or other file?
- What is the best way to make a custom page from a plugin?
- Setting text widget to one page only
- How to add captcha to publish widget
- Searching a tab/space delimited text file based upon form criteria and returning a ‘record’ into a word press results page
- How to validate custom fields in Quick edit/bulk edit?
- Fixed: Console.log twice in the edit function
- Redirect to a page while maintaining search query parameters without causing an infinite loop
- Is it possible to place a WordPress widget into the main page layout?
- How to make slider like this in wordpress?
- Showing different js file for different theme in wordpress customizer api
- Function settings_fields() not recognized (Uncaught Error: Call to undefined function settings_fields())
- how to make settings page for woocommerce plugin?
- what’s different between wpdb->prefix and table_prefix
- How to use custom footer template in a site-plugin?
- Top authors or top categories by post views?
- WP default file upload hook not working if used in a plugin
- Need help getting a certain value out of a multi dimensional array
- Extend WordPress Search
- WordPress internationalization + domains
- Display alt text as tool tip on page
- Plugin:Read More Right Here , How to change the name (more…) to Read More
- How do I output user_registered time in my correct timezone?
- Ajax in Plugins: returns the whole page
- how to search through plugin in wordpress cimy-user-extra-fields?
- How to change prices per number ordered in WooCommerce [closed]
- Private plugin updating – GitHub zip file changes the plugin directory (with release or branch name)
- WordPress custom block: Link saved in database not retrieved when editing post
- Accessing Correct Database to Create REST API Endpoint
- How do I replace a logo image that’s hard-coded into a plugin’s logo.php file?
- How to Order Posts by Taxonomy in Jetengine Plugin
- Detect if user is on the specific page in WordPress
- A multi-section WordPress store [closed]
- Possible to issue a warning before plugin deletion (i.e., that tables will be deleted)?