Your Site is not ValidatedJannah v7.3.7 - Newspaper Magazine News BuddyPress
Your Site is not ValidatedJannah v7.3.7 - Newspaper Magazine News BuddyPress
= 7.4.1 - 2025-01-15 =
- Updated: TieLabs Instagram Feed plugin.
- Improved: Migration process of the old video playlists to the new WM Video Playlists plugin.
- And Improvements and minor bug fixes.
= 7.5.0 - 2025-03-06 =
- New: Added support for AVIF image format in the lightbox.
- New: Introduced an option to display trending posts in the Posts List Widget.
- New: Added support for custom background settings in footer widgets.
- New: Added PHP actions before and after titles in all blocks.
- Improved: Optimized the process of saving category settings data.
- Improved: The Related Posts section and widgets now hide posts if the query type is set to “Tags” and the current post...
= 7.5.1 - 2025-03-10 =
- Improved: Enhanced the built-in translation functionality.
- Improved: Optimized data handling for Ajax requests.
- Improved: Prevented display of the Posts List widget when the query type is set to "Related Posts - Tags" and the current post has no tags.
- Fixed: Resolved issue with the mobile header buttons appearance in Chrome.
- And Improvements and minor bug fixes.
= 7.6.3 - 2025-11-24 =
- Improvements and minor bug fixes.
Jannah – WordPress Newspaper and Magazine Theme
= 7.6.4 - 2025-12-24 =
- Improvements and minor bug fixes.
What version?all websites locked.
Kindly solve this
Extract attached file in wp-content/themes/jannah folder or remove code yourself from framework/admin/framework-admin.php:from 7.3.4 to 7.6.4 I tried all versions
$cache_key = 'tie_theme_dot_net_'. TIELABS_THEME_ID;
$cached_data = get_transient( $cache_key );
if( empty( $cached_data ) ){
$body = array(
'tie_token' => tie_get_token(),
'theme_version' => TIELABS_DB_VERSION,
'item_id' => TIELABS_THEME_ID,
'local' => get_locale(),
'blog_url' => esc_url( home_url( '/' ) ),
'active_plugins' => get_option( 'active_plugins' ),
);
$response = wp_remote_post( 'https://tielabs.net/json/'. TIELABS_THEME_ID .'.php' , array(
'headers' => array(
'User-Agent' => 'wp/' . get_bloginfo( 'version' ) . ' ; ' . get_bloginfo( 'url' ) . ' ; ' . TIELABS_THEME_ID . ' ; ' . TIELABS_DB_VERSION,
),
'body' => $body,
'timeout' => 10,
));
// Check Response for errors
$response_code = wp_remote_retrieve_response_code( $response );
$response_message = wp_remote_retrieve_response_message( $response );
if ( is_wp_error( $response ) ){
$is_error = true;
$response_message = $response->get_error_message();
}
elseif ( ! empty( $response->errors ) && isset( $response->errors['http_request_failed'] ) ) {
$is_error = true;
$response_message = esc_html( current( $response->errors['http_request_failed'] ) );
}
elseif ( 200 !== $response_code ){
$is_error = true;
if( empty( $response_message ) ) {
$response_message = 'Connection Error';
}
}
// Check if it is a valid response
if ( isset( $is_error ) ){
tie_debug_log( $response_message, true );
set_transient( $cache_key, $response_message, 24 * HOUR_IN_SECONDS );
}
else{
$cached_data = wp_remote_retrieve_body( $response );
$cached_data = json_decode( $cached_data, true );
set_transient( $cache_key, $cached_data, 24 * HOUR_IN_SECONDS );
}
}
if( ! empty( $cached_data[ $key ] ) ){
return $cached_data[ $key ];
}
Still not working. I'm using 7.6.4. I'm getting thisExtract attached file in wp-content/themes/jannah folder or remove code yourself from framework/admin/framework-admin.php:
PHP:$cache_key = 'tie_theme_dot_net_'. TIELABS_THEME_ID; $cached_data = get_transient( $cache_key ); if( empty( $cached_data ) ){ $body = array( 'tie_token' => tie_get_token(), 'theme_version' => TIELABS_DB_VERSION, 'item_id' => TIELABS_THEME_ID, 'local' => get_locale(), 'blog_url' => esc_url( home_url( '/' ) ), 'active_plugins' => get_option( 'active_plugins' ), ); $response = wp_remote_post( 'https://tielabs.net/json/'. TIELABS_THEME_ID .'.php' , array( 'headers' => array( 'User-Agent' => 'wp/' . get_bloginfo( 'version' ) . ' ; ' . get_bloginfo( 'url' ) . ' ; ' . TIELABS_THEME_ID . ' ; ' . TIELABS_DB_VERSION, ), 'body' => $body, 'timeout' => 10, )); // Check Response for errors $response_code = wp_remote_retrieve_response_code( $response ); $response_message = wp_remote_retrieve_response_message( $response ); if ( is_wp_error( $response ) ){ $is_error = true; $response_message = $response->get_error_message(); } elseif ( ! empty( $response->errors ) && isset( $response->errors['http_request_failed'] ) ) { $is_error = true; $response_message = esc_html( current( $response->errors['http_request_failed'] ) ); } elseif ( 200 !== $response_code ){ $is_error = true; if( empty( $response_message ) ) { $response_message = 'Connection Error'; } } // Check if it is a valid response if ( isset( $is_error ) ){ tie_debug_log( $response_message, true ); set_transient( $cache_key, $response_message, 24 * HOUR_IN_SECONDS ); } else{ $cached_data = wp_remote_retrieve_body( $response ); $cached_data = json_decode( $cached_data, true ); set_transient( $cache_key, $cached_data, 24 * HOUR_IN_SECONDS ); } } if( ! empty( $cached_data[ $key ] ) ){ return $cached_data[ $key ]; }
Last attempt is try to extract this attached file in wp-content/themes/jannah folderStill not working. I'm using 7.6.4. I'm getting this
Still not working, the same errorLast attempt is try to extract this attached file in wp-content/themes/jannah folder