Video Gallery widget for Ultimate Addon for Elementor comes with a feature to add Category for every video in the gallery.
These categories help one set filters for the Gallery. You can read more about it here.
But, it so happens that sometimes you want to change the category name. So in that scenario, you might need to edit each video and edit the name, which is quite a tedious task to do.
Do not worry, we have a rescue filter available for this. This filter will help you bulk edit a particular category name. It is used as shown below.
add_filter( 'uael_video_gallery_filters', function( $filters ) {
$filters['vimeo'] = 'My edited Vimeo title';
return $filters;
}, 1, 1 );
This will change the category name with Vimeo to My Edited Vimeo Title.
Bulk Editing for Video Category Names
Bulk Editing for Video Category Names