Theme Support Forum

Support Forum for Free and Premium Themes. Premium Theme Forums are Private! Please log in first to see the Premium forums

Viewing 3 posts - 1 through 3 (of 3 total)

WPML plugin

Home Forums Free Theme Support Theron Lite WPML plugin

  • #94021

    Silvia

    Good morning! I installed the WPML plugin in my wordpress theme pro theron,running, but I have no option to translate the boxes that are located under the slider. Is there any way to get it? Thank you. My web is http://www.espaimares.cat

    Silvia

    #94679

    Towfiq I.

    administrator

    Add this to your functions.php:

    // wpml shortcodes --------------------
     
    add_shortcode( 'wpml_language', 'wpml_find_language');
     
     
    /* ---------------------------------------------------------------------------
     
     * Shortcode [wpml_language language="en"] [/wpml_language]
     
     * --------------------------------------------------------------------------- */
     
    function wpml_find_language( $attr, $content = null ){
         
        extract(shortcode_atts(array(
     
            'language' => '',
     
        ), $attr));
         
        $current_language = ICL_LANGUAGE_CODE;
         
        if($current_language == $language){
            $output = do_shortcode($content);
        }else{
            $output = "";
        }
             
        return $output;
    }

    after this:

    $content_width = 630;

    then you can use this shortcode in slide title and content like this:

    [wpml_language language="en"] My English Title [/wpml_language]
    [wpml_language language="fr"] My French Title [/wpml_language]
    #95945

    Silvia

    Thank you!!

You must be logged in to reply to this topic.