Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Created May 1, 2025 07:32
Show Gist options
  • Save pramodjodhani/08cc2e2e9532a86c4d0122e45499ca8c to your computer and use it in GitHub Desktop.
Save pramodjodhani/08cc2e2e9532a86c4d0122e45499ca8c to your computer and use it in GitHub Desktop.
Iconic Quickview - Translate text.
/**
* 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