Hi @blerimkrosi,
I am Mangesh from rtMedia team.
Sorry for the inconvenience caused. It seems like WordPress customizer's settings are not getting applied to the /media
page.
To fix this, please add the following code in your theme's functions.php
file.
function rtt_alter_query( $return, $page_slug ) {
global $wp_query;
if ( ! defined( 'RTMEDIA_MEDIA_SLUG' ) ) {
return $return;
}
if ( array_key_exists( RTMEDIA_MEDIA_SLUG, $wp_query->query_vars ) ) {
$wp_query->is_page = true;
}
return $return;
}
add_filter( 'rtmedia_return_is_template', 'rtt_alter_query', 10, 2 );
Let me know if the above code is working for you or not.
Thanks,
Mangesh