/var/www/wp2.qr4y.com/www/wp-content/plugins/elementor-pro/modules/nested-carousel
Edit: /var/www/wp2.qr4y.com/www/wp-content/plugins/elementor-pro/modules/nested-carousel/module.php (1302B)
experiments->is_feature_active( 'nested-elements' );
}
/**
* Get the base URL for assets.
*
* @return string
*/
public function get_assets_base_url(): string {
return ELEMENTOR_PRO_URL;
}
/**
* Register styles.
*
* At build time, Elementor compiles `/modules/nested-carousel/assets/scss/frontend.scss`
* to `/assets/css/widget-nested-carousel.min.css`.
*
* @return void
*/
public function register_styles() {
wp_register_style(
'widget-nested-carousel',
$this->get_css_assets_url( 'widget-nested-carousel', null, true, true ),
[ 'elementor-frontend' ],
ELEMENTOR_PRO_VERSION
);
}
}