/*
Theme Name: Ziootech Child
Theme URI: https://ivanbanda.co.uk
Template: flatsome
Author: Banda Ivan
Author URI: https://ivanbanda.co.uk
Description: Multi-Purpose Responsive Theme
Version: 1.1.1.0.1711575251
Updated: 2024-03-27 21:34:11

*/

#screen-meta-links .show-settings {
    display: none !important;
}

/* Stop Contact Form loading on all pages */
add_filter( 'wpcf7_load_js', '__return_false' );
add_filter( 'wpcf7_load_css', '__return_false' );

/* Load the files on specific pages*/

add_action('wp_enqueue_scripts', 'load_wpcf7_scripts');
function load_wpcf7_scripts() {
  if ( is_page('contact') ) {
    if ( function_exists( 'wpcf7_enqueue_scripts' ) ) {
      wpcf7_enqueue_scripts();
    }
    if ( function_exists( 'wpcf7_enqueue_styles' ) ) {
      wpcf7_enqueue_styles();
    }
  }
}




