SalihToy adlı üyeden alıntı

Bazı temaların contact form 7 ile CSS uyumluluğu mevcuttur. Aşağıdaki kodu temanın functions.php dosyası içine eklerseniz kaynakta ki tüm contact form 7 dosyaları yok olacaktır.


hocam çok teşekkür ederim düzeldi. :)

TEHET adlı üyeden alıntı


// Header'dan sil
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {
wp_deregister_style( 'contact-form-7' );
}

// Footer'a ekle
$css_url = plugins_url( '/includes/css/style.css', __FILE__ );
function contact7_footer_styles() {
wp_enqueue_style( 'contact-form-7-css', $css_url );
};
add_action( 'get_footer', 'contact7_footer_styles' );


Bu kod ile de header'daki tüm css ve js dosyalarını footer'a taşırsın.
remove_action( 'wp_head', 'wp_print_scripts' );
remove_action( 'wp_head', 'wp_print_head_scripts', 9 );
remove_action( 'wp_head', 'wp_enqueue_scripts', 1 );
add_action( 'wp_footer', 'wp_print_scripts', 5 );
add_action( 'wp_footer', 'wp_enqueue_scripts', 5 );
add_action( 'wp_footer', 'wp_print_head_scripts', 5 );


SalihToy 'un dediklerini yaptım hocam teşekkür ederim. :)