This commit is contained in:
2025-12-11 16:01:25 +01:00
parent 4e7df5d2a3
commit d3f8dbbfb4
5 changed files with 112 additions and 1 deletions

View File

@@ -17,11 +17,13 @@ function register_hello_world_widget( $widgets_manager ) {
require_once( __DIR__ . '/widgets/acf-product-parameters.php' );
require_once( __DIR__ . '/widgets/places-map.php' );
require_once( __DIR__ . '/widgets/product-featured-image.php' );
require_once( __DIR__ . '/widgets/acf-product-label.php' );
$widgets_manager->register( new \Elementor_Images_List() );
$widgets_manager->register( new \Elementor_ACF_Product_Parameters() );
$widgets_manager->register( new \Elementor_Places_Map() );
$widgets_manager->register( new \Elementor_Product_Featured_Image() );
$widgets_manager->register( new \Elementor_ACF_Product_Label() );
}
add_action( 'elementor/widgets/register', 'register_hello_world_widget' );