0

I have a javascript function in a wordpress script, I need it to be compatible with WPML chain translation

ubp_show_error("<p>Inutile de l'ajouter plusieurs fois</p>");

How can I make this chain to be something like this :

ubp_show_error(_e('<p>Inutile de l'ajouter plusieurs fois</p>','mytheme'));

I've tryed :

$error = _('<p>Inutile de l'ajouter plusieurs fois</p>','mytheme');
ubp_show_error($error); 

but in javascript, this doesn't work

0

1 Answer 1

1

You need to localize your script.

PHP

function custom_load_scripts() {
    wp_enqueue_script('your-script', '/your-script.js');
    wp_localize_script('your-script', 'your_js_obj_name', array(
            'error' => __("<p>Inutile de l'ajouter plusieurs fois</p>",'mytheme')
        )
    );
}
add_action('wp_enqueue_scripts', 'custom_load_scripts');

Now you have access to that data in your javascript file like:

JS

your_js_obj_name.error // --> '<p>Inutile de l'ajouter plusieurs fois</p>'
Sign up to request clarification or add additional context in comments.

1 Comment

ok thank you, so I need to replace the loading of this script, or I can add this to my functions.php ? And so I replace the error message in JS file with your ?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.