I accidentally discovered that my child theme CSS is get called twice. I found that this is an old issue (see here and here), but I don’t know how...
  • May 23, 2022
  • 0 Comments
I’m trying to remove some specific lines from the WP_HEAD. Now my header looks following way: <link rel="stylesheet" id='bootstrap-css' href="https://wordpress.stackexchange.com/themes/wp-e/css/bootstrap.css?ver=4.2.2" type="text/css" media="all" /> <link rel="stylesheet" id='bootstrap-responsive-css' href="http://wordpress.stackexchange.com/themes/wp-e/css/bootstrap-responsive.css?ver=4.2.2" type="text/css" media="all"...
  • May 22, 2022
  • 0 Comments
I am trying to import three google fonts by adding the following to my functions.php file: function get_google_fonts() { wp_enqueue_style( 'get-google-fonts', 'https://fonts.googleapis.com/css2?family=Alata&family=Baloo+Tamma+2&family=Roboto:wght@100&display=swap', false ); } add_action( 'wp_enqueue_scripts', 'get_google_fonts' );...
  • May 21, 2022
  • 0 Comments
Is there a way to enqueue my style.css (and other stylesheets) AFTER a certain plugin enqueues its styles? Specifically, I want my style.css to overwrite cforms’s styles, but when...
  • May 21, 2022
  • 0 Comments