badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Removing Google API fonts in child theme

#24710

Hi aaron1,

Use

function unhook_thematic_functions() {
add_action( 'wp_enqueue_scripts', 'attitude_scripts_styles_method' );
}

after this

add_action( 'wp_enqueue_scripts', 'attitude_child_scripts_styles_method');
function attitude_child_scripts_styles_method(){
// your stuff
}

Thank you!