Language switcher in top bar: icon facebook

Hi, how can I put the wpml in the top bar, next to the facebook icon?

Grazie :wink:

I tried with this, but it does not work:

Please setup a child theme1 first and then, create file _topbar.php in wp-content/themes/x-child/framework/views/global/ then copy the code below into that file.

<?php // ============================================================================= // VIEWS/GLOBAL/_TOPBAR.PHP // ----------------------------------------------------------------------------- // Includes topbar output. // ============================================================================= ?> <?php if ( x_get_option( 'x_topbar_display' ) == '1' ) : ?>
<?php if ( x_get_option( 'x_topbar_content' ) != '' ) : ?>

<?php echo x_get_option( 'x_topbar_content' ); ?>

<?php endif; ?> <?php x_social_global(); ?> <?php do_action('icl_language_selector'); ?>
<?php endif; ?>

Then try adding the following CSS rule into your Theme Options > Global CSS area.

span.language-switcher {
float: right;
}

Hi There,

Upon checking your website, I could see that the X child theme is NOT activated yet.

Can you please double check again?

If it still doesnโ€™t work, please share us with your admin account so we can take a closer look.

Thank you.

It works great. Thank you.

Glad to know!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.