Hey @zoinks,
Glad to hear you are enjoying the free version! Here are the answers to your questions:
- Display of single YouTube video based on YT video identifier?(I’m currently using another YT plugin for only this feature and would rather not have possible conflicts/confusion)
Yes, you can display a single YouTube video with the plugin feed. It would be created under all feeds and can be displayed with it’s specific shortcode like any other feed. Due to our plugin and likely other plugins using the standard YouTube Embed for the final display of a video, conflicts can occur if trying to use both. This depends on the specific plugin though. If you can use a feed in our free version and your other solution at the same time currently, it will continue working fine.
- Custom HTML design for lists?(in addition to the added paid layouts)
In addition to the paid layouts, you can customize the template files that exist in the plugin if you are able to leverage PHP, HTML and CSS on your end. You can find information on this here.
- More videos in lists?(even when I increase the videos to show in the list’s settings, the number of videos always caps out at 500)
This is due to the caching limit for each feed. This is set to a level that fits the majority of users to not take too much space in the database or become too slow. You can adjust this with a custom PHP snippet in your theme or child theme’s (preferably child theme) functions.php file, in this example increasing the cache limit to 800 which you can adjust further to your needs:
function sby_custom_max_cache( $max_cache ) {
return 800;
}
add_filter( 'sby_max_cache_size', 'sby_custom_max_cache', 10, 1 );
Hope this helps clarify a few things but let us know if you have any additional questions!
Many thanks,
Joel