Hello,
I’m happy to upgrade to pro if it can support this feature.
BTW: Not sure if this helps, but I found the following code snippet and managed to get the ‘Post’s widget to combine multiple post types in it’s results, by using defining a custom query in functions.php (below) and then setting Query ID in Elementor.
// Showing multiple post types in Posts Widget
add_action( ‘elementor/query/my_custom_filter’, function( $query ) {
// Here we set the query to fetch posts with
// post type of ‘custom-post-type1’ and ‘custom-post-type2’
$query->set( ‘post_type’, [ ‘post’, ‘my_custom-post’ ] );
If you could let me know when this functionality has been added to the Pro version, I will happily purchase it.
Once again Many Thanks.