Created
May 1, 2025 07:32
-
-
Save pramodjodhani/08cc2e2e9532a86c4d0122e45499ca8c to your computer and use it in GitHub Desktop.
Iconic Quickview - Translate text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Iconic Quickview - Translate text. | |
*/ | |
function iconic_qv_wpml_translate_text() { | |
global $jckqv; | |
if ( empty( $jckqv ) ) { | |
return; | |
} | |
$language = iconic_qv_wpml_get_language(); | |
if ( empty( $language ) ) { | |
return; | |
} | |
// Todo - use your condition to change the text for different languages. | |
if ( 'en' === $language ) { | |
$jckqv->settings['trigger_styling_text'] = 'Quick View'; | |
} else { | |
$jckqv->settings['trigger_styling_text'] = 'Quick View'; | |
} | |
} | |
add_action( 'init', 'iconic_qv_wpml_translate_text', 11 ); | |
function iconic_qv_wpml_get_language() { | |
return apply_filters( 'wpml_current_language', null ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment