Hello Xtemos Studio,
I added the filters because I would also like to disable the default filter and use my own.
But it does not work.
My functions.php of the child theme looks like this:
<?php
add_action( 'wp_enqueue_scripts', 'basel_child_enqueue_styles', 1000 );
function basel_child_enqueue_styles() {
if( basel_get_opt( 'minified_css' ) ) {
wp_enqueue_style( 'basel-style', get_template_directory_uri() . '/style.min.css', array('bootstrap') );
} else {
wp_enqueue_style( 'basel-style', get_template_directory_uri() . '/style.css', array('bootstrap') );
}
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('bootstrap') );
add_filter( 'basel_use_custom_price_widget', '__return_false', 10 );
add_filter( 'basel_use_custom_order_widget', '__return_false', 10 );
}