Hi @edeb,
Thanks for get in touch with us.
1. For dequeue script: “after_wcfm_load_scripts” hook can be use.
Code will look like in child theme:
function wcfm_dequeue_script() {
wp_dequeue_script( 'wcfm_products_manage_js' );
}
add_action( 'after_wcfm_load_scripts', 'wcfm_dequeue_script' );
2. For dequeue style: “after_wcfm_load_styles” hook can be use.
Code will be look like in child theme:
function wcfm_dequeue_style() {
wp_dequeue_style( 'wcfm_products_manage_css' );
}
add_action( 'after_wcfm_load_styles', 'wcfm_dequeue_style' );
If you have any further query please feel free to reach us anytime.
Thank You