🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-16 11:07:05 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
jetpack
/
3rd-party
📍 /home/therahul/thedasstores.com/wp-content/plugins/jetpack/3rd-party
🔄 Refresh
✏️
Editing: qtranslate-x.php
Writable
<?php /** * 3rd party integration for qTranslate. * * @package automattic/jetpack */ /** * Prevent qTranslate X from redirecting REST calls. * * @since 5.3 * * @param string $url_lang Language URL to redirect to. * @param string $url_orig Original URL. * @param array $url_info Pieces of original URL. * * @return bool */ function jetpack_no_qtranslate_rest_url_redirect( $url_lang, $url_orig, $url_info ) { if ( str_contains( $url_info['wp-path'], 'wp-json/jetpack' ) ) { return false; } return $url_lang; } add_filter( 'qtranslate_language_detect_redirect', 'jetpack_no_qtranslate_rest_url_redirect', 10, 3 );
💾 Save Changes
❌ Cancel