yurivasilchenko
Forum Replies Created
-
Hello!
Are there any answers to questions here?
Forum: Plugins
In reply to: [Subtitles] Display Subtitles in one more place in the siteHi!
Thank you for your help.
For my case came an adapted version with
get_the_subtitle()
Your plugin works great!
Forum: Plugins
In reply to: [Subtitles] Display Subtitles in one more place in the siteHi!
Unfortunately, this doesn’t work.Forum: Plugins
In reply to: [Yoast SEO] Doesn’t work Open GraphHi!
I found and fixed the error. It was caused by one of the plugins, namely the selected option Lazy Load.
Thank you!
Forum: Plugins
In reply to: [WP Super Cache] Timeout & Open GraphHi!
I found and fixed the error. It was caused by one of the plugins, namely the selected option Lazy Load.
Thank you!
Hi!
Thank you for your clear answer!- This reply was modified 7 years, 7 months ago by yurivasilchenko.
Forum: Plugins
In reply to: [Subtitles] Disable Subtitles in search viewsI figured out, everything turned out.
Thank you.Forum: Plugins
In reply to: [Subtitles] Disable Subtitles in search viewsAs I understand, you mean this code:
/**
* Disable Subtitles in archive views.
*
* @see function is_archive
* @see function in_the_loop
*/
function subtitles_mod_supported_views() {
// Ditch subtitles in archives.
if ( is_archive() ) {
return false;
}// Default in The Loop behavior from Subtitles.
if ( in_the_loop() ) {
return true;
}
} // end function subtitles_mod_supported_views
add_filter( ‘subtitle_view_supported’, ‘subtitles_mod_supported_views’ );This code works fine for me for archives views.
I tried to add a similar full code, only replacing “if ( is_archive() )” with “if ( is_search() )”.
But in this case, I lose access to the site, and I was forced to delete this code.
Tell me how to do it correctly.
Thank you.
Forum: Plugins
In reply to: [Subtitles] Disable Subtitles in search viewsI checked it does not work. So I wrote it here.
Forum: Plugins
In reply to: [Perfect Images] Don’t work only with inside post images and only on iPhone.A solution has been found.
In the Advanced settings, you must select “Disable the Responsive Images features”.