I need help getting the gTranslate shortcode on the navbar.
I tried modyfing my child theme functions.php adding <?php echo do_shortcode('[gtranslate]'); ?> at the end but I broke the site with that change. I was able to restore it removing that line. What;s the best way for to get this working right?
// Additional Functions
// =============================================================================
// Add text next to the logo
// =============================================================================
function add_logo_text_number(){ ?>
<div class="custom-text left pas">
<span class="logo-text"><a href="https://afuego.us">AFUEGO</a></span>
</div>
<?php }
add_action('x_after_view_global__brand', 'add_logo_text_number');
// =============================================================================
<?php echo do_shortcode('[gtranslate]'); ?>
Thank You!