Blocking Google Fonts in wordpress website

If you check your source code and look for “fonts.” you will find a line that is calling the stylesheet. This could be “googleapis.com” or “google.com or other URL. Here’s how mine looks (using Astra theme); <link rel=”stylesheet” id=’astra-google-fonts-css’ href=”https://fonts.googleapis.com/css?family=Roboto%3A400%2C&#038;display=fallback&#038;ver=4.0.2″ media=”all” /> Make note of the ID (astra-google-fonts-css) and then add the following to your … Read more

How to automatically set a Template Page Name next to a page in menu screen such as WooCommerce pages, front page, or posts page in wordpress?

Use the display_post_states hook: function custom_display_post_states( $states, $post ) { if ( ‘Services’ === $post->post_title ) { $post_states[‘custom-content’] = ‘Services Page’; } return $post_states; } add_filter( ‘display_post_states’, ‘custom_display_post_states’, 10, 2 ); or you can do by ID if ( 1 === $post->ID) { $post_states[‘custom-content’] = ‘Services Page’; } To check if page has template: function … Read more