Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
attributes Only for Elementor Pro, it will not appear without Elementor Pro. Instead if you only want to display the option on all existing Elementor widgets, you can use. add_action( ‘elementor/element/common/_section_style/after_section_end’, ‘ecv_add_conditional_visibility_controls’, 10, 3 ); and this function function ecv_add_conditional_visibility_controls( $element,$args ) { // code } Here is the complete corrected code, it will display … Read more