Fjern Elementor Dynamic Conditions begrænsning

Normalt har Elementor begrænset hvor mange linjer den viser ved deres Dynamic Conditons, men denne kode fjern den begrænsning.

Indsæt i pluginnet "Snippets"

function custom_custom_fields_meta_limit( $limit ) {
$new_limit = 250; // Change this to your desired limit
return $new_limit; }
 
add_filter('elementor_pro/display_conditions/dynamic_tags/custom_fields_meta_limit', 'custom_custom_fields_meta_limit');