<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Remove Google Font Lato &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/remove-google-font-lato/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/remove-google-font-lato/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 00:01:34 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-110620</guid>
					<title><![CDATA[Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-110620</link>
					<pubDate>Tue, 23 Sep 2014 14:38:32 +0000</pubDate>
					<dc:creator>jimahyland</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there. Thanks for the great work on developing this framework.</p>
<p>Out of thousands of brilliant things, there&#8217;s just one thing so far that I think is a bit of an oversight. It seems regardless of where I have Enable Custom Fonts on or off, the font Lato always gets loaded. If I what to use plain old web fonts like Helvetica, I still am getting Lato loaded into the DOM.</p>
<p>Is there anyway of avoiding this? I&#8217;m trying to set up with a Child Theme.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-110658</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-110658</link>
					<pubDate>Tue, 23 Sep 2014 15:08:20 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there, </p>
<p>You can override the default font styles using your Child Theme. Just use the below code, place it into the Child Theme&#8217;s &#8220;style.css&#8221; file.</p>
<pre><code>
body {
    font-family: &quot;HelveticaNeue-Light&quot;, &quot;Helvetica Neue Light&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, &quot;Lucida Grande&quot;, sans-serif;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-110965</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-110965</link>
					<pubDate>Tue, 23 Sep 2014 20:48:01 +0000</pubDate>
					<dc:creator>jimahyland</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for your reply. I put in your css and it did change some of the fonts, but not all. After a quick go it seems that this seems to remove all reference to Lato:</p>
<pre><code>body,
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,
blockquote,
input,button,select,textarea,
.widget_calendar #wp-calendar th,
.widget_calendar #wp-calendar #prev,.widget_calendar #wp-calendar #next {
    font-family: &quot;HelveticaNeue-Light&quot;, &quot;Helvetica Neue Light&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;
}</code></pre>
<p>or slightly less complicated:</p>
<pre><code>* {
    font-family: &quot;HelveticaNeue-Light&quot;, &quot;Helvetica Neue Light&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif !important;
}</code></pre>
<p>although I would prefer to not use !important on such a global level. </p>
<p>Is there any other way to do this?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-111101</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-111101</link>
					<pubDate>Wed, 24 Sep 2014 03:28:12 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Jim,</p>
<p>Please try adding the code below in your <strong>functions.php</strong>.</p>
<pre><code>function x_enqueue_site_styles() {

    //
    // Stack data.
    //

    $stack  = x_get_stack();
    $design = x_get_option( &#039;x_integrity_design&#039;, &#039;light&#039; );

    if ( $stack == &#039;integrity&#039; &amp;&amp; $design == &#039;light&#039; ) {
      $ext = &#039;-light&#039;;
    } elseif ( $stack == &#039;integrity&#039; &amp;&amp; $design == &#039;dark&#039; ) {
      $ext = &#039;-dark&#039;;
    } else {
      $ext = &#039;&#039;;
    }

    //
    // Font data.
    //

    $body_font_family_query         = x_get_font_family_query( x_get_option( &#039;x_body_font_family&#039;, &#039;Lato&#039; ) );
    $body_font_weight_and_style     = x_get_option( &#039;x_body_font_weight&#039;, &#039;400&#039; );
    $body_font_weight               = x_get_font_weight( $body_font_weight_and_style );

    $headings_font_family_query     = x_get_font_family_query( x_get_option( &#039;x_headings_font_family&#039;, &#039;Lato&#039; ) );
    $headings_font_weight_and_style = x_get_option( &#039;x_headings_font_weight&#039;, &#039;400&#039; );
    $headings_font_weight           = x_get_font_weight( $headings_font_weight_and_style );

    $logo_font_family_query         = x_get_font_family_query( x_get_option( &#039;x_logo_font_family&#039;, &#039;Lato&#039; ) );
    $logo_font_weight_and_style     = x_get_option( &#039;x_logo_font_weight&#039;, &#039;400&#039; );
    $logo_font_weight               = x_get_font_weight( $logo_font_weight_and_style );

    $navbar_font_family_query       = x_get_font_family_query( x_get_option( &#039;x_navbar_font_family&#039;, &#039;Lato&#039; ) );
    $navbar_font_weight_and_style   = x_get_option( &#039;x_navbar_font_weight&#039;, &#039;400&#039; );
    $navbar_font_weight             = x_get_font_weight( $navbar_font_weight_and_style );

    $subsets                        = &#039;latin,latin-ext&#039;;

    if ( x_get_option( &#039;x_custom_font_subsets&#039;, 0 ) == 1 ) {
      if ( x_get_option( &#039;x_custom_font_subset_cyrillic&#039;, 0 ) == 1   ) { $subsets .= &#039;,cyrillic,cyrillic-ext&#039;; }
      if ( x_get_option( &#039;x_custom_font_subset_greek&#039;, 0 ) == 1      ) { $subsets .= &#039;,greek,greek-ext&#039;; }
      if ( x_get_option( &#039;x_custom_font_subset_vietnamese&#039;, 0 ) == 1 ) { $subsets .= &#039;,vietnamese&#039;; }
    }

    $custom_font_args   = array(
      &#039;family&#039; =&gt; $body_font_family_query . &#039;:&#039; . $body_font_weight . &#039;,&#039; . $body_font_weight . &#039;italic,700,700italic|&#039; . $navbar_font_family_query . &#039;:&#039; . $navbar_font_weight_and_style . &#039;|&#039; . $headings_font_family_query . &#039;:&#039; . $headings_font_weight_and_style . &#039;|&#039; . $logo_font_family_query . &#039;:&#039; . $logo_font_weight_and_style,
      &#039;subset&#039; =&gt; $subsets
    );

    $standard_font_args = array(
      &#039;family&#039; =&gt; &#039;Lato:&#039; . $body_font_weight . &#039;,&#039; . $body_font_weight . &#039;italic,&#039; . $navbar_font_weight_and_style . &#039;,&#039; . $headings_font_weight_and_style . &#039;,&#039; . $logo_font_weight_and_style . &#039;,700,700italic&#039;,
      &#039;subset&#039; =&gt; $subsets
    );

    $get_custom_font_family   = add_query_arg( $custom_font_args,   &#039;//fonts.googleapis.com/css&#039; );
    $get_standard_font_family = add_query_arg( $standard_font_args, &#039;//fonts.googleapis.com/css&#039; );

    //
    // Enqueue styles.
    //

    if ( is_child_theme() ) {
      wp_enqueue_style( &#039;x-stack&#039;, get_stylesheet_directory_uri() . &#039;/style.css&#039;, NULL, NULL, &#039;all&#039; );
    } else {
      wp_enqueue_style( &#039;x-stack&#039;, get_stylesheet_directory_uri() . &#039;/framework/css/site/stacks/&#039; . $stack . $ext . &#039;.css&#039;, NULL, NULL, &#039;all&#039; );
    }

    if ( is_rtl() ) {
      wp_enqueue_style( &#039;x-rtl&#039;, X_TEMPLATE_URL . &#039;/framework/css/site/rtl/&#039; . $stack . &#039;.css&#039;, NULL, NULL, &#039;all&#039; );
    }

    if ( X_BBPRESS_IS_ACTIVE ) {
      if ( x_is_bbpress() ) {
        wp_deregister_style( &#039;buttons&#039; );
      }
      wp_deregister_style( &#039;bbp-default&#039; );
      wp_enqueue_style( &#039;x-bbpress&#039;, X_TEMPLATE_URL . &#039;/framework/css/site/bbpress/&#039; . $stack . $ext . &#039;.css&#039;, NULL, NULL, &#039;all&#039; );
    }

    if ( X_BUDDYPRESS_IS_ACTIVE ) {
      wp_deregister_style( &#039;bp-legacy-css&#039; );
      wp_deregister_style( &#039;bp-admin-bar&#039; );
      wp_enqueue_style( &#039;x-buddypress&#039;, X_TEMPLATE_URL . &#039;/framework/css/site/buddypress/&#039; . $stack . $ext . &#039;.css&#039;, NULL, NULL, &#039;all&#039; );
    }

    if ( X_WOOCOMMERCE_IS_ACTIVE ) {
      wp_deregister_style( &#039;woocommerce-layout&#039; );
      wp_deregister_style( &#039;woocommerce-general&#039; );
      wp_deregister_style( &#039;woocommerce-smallscreen&#039; );
      wp_enqueue_style( &#039;x-woocommerce&#039;, X_TEMPLATE_URL . &#039;/framework/css/site/woocommerce/&#039; . $stack . $ext . &#039;.css&#039;, NULL, NULL, &#039;all&#039; );
    }

    if ( X_GRAVITY_FORMS_IS_ACTIVE ) {
      wp_enqueue_style( &#039;x-gravity-forms&#039;, X_TEMPLATE_URL . &#039;/framework/css/site/gravity_forms/&#039; . $stack . $ext . &#039;.css&#039;, NULL, NULL, &#039;all&#039; );
    }

    if ( X_CONTACT_FORM_7_IS_ACTIVE ) {
      wp_deregister_style( &#039;contact-form-7&#039; );
    }

    $get_standard_font_family = &quot;&quot;;

    if ( x_get_option( &#039;x_custom_fonts&#039;, 0 ) == 1 ) {
      wp_enqueue_style( &#039;x-font-custom&#039;, $get_custom_font_family, NULL, NULL, &#039;all&#039; );
    } else {
      wp_enqueue_style( &#039;x-font-standard&#039;, $get_standard_font_family, NULL, NULL, &#039;all&#039; );
    }

}</code></pre>
<p>It is the X enqueue style function which outputs the Lato font as the default. I&#8217;ve set <code>$get_standard_font_family</code> to an empty string before it is called so Lato won&#8217;t get called. Please ensure you&#8217;ve disabled Custom Fonts in your Typography setting. After implementing this, the default will fall back to &#8220;Helvetica Neue&#8221; so you won&#8217;t need changing the CSS.</p>
<p>Hope that helps. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-118559</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-118559</link>
					<pubDate>Sat, 04 Oct 2014 18:46:55 +0000</pubDate>
					<dc:creator>jimahyland</dc:creator>

					<description>
						<![CDATA[
						<p>That works perfectly. Thanks!</p>
<p>For future reference, I can&#8217;t see how this approach will be able to specify anything other than Helvetica Neue. </p>
<p>Not sure if this is planned, or not so easy to implement but from my point of view it would be nice to have a Customizer way of specifying non-google fonts.</p>
<p>For anyone else wanting to do something similar my global * {} approach is not such a great idea as it gets rid of the font icons that are used all over the theme.</p>
<p>Thanks again. Great theme, great support 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-118641</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-118641</link>
					<pubDate>Sun, 05 Oct 2014 01:24:21 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Jim,</p>
<p>You&#8217;re welcome and thanks for your feedback. We&#8217;ll take note of that as feature request and might implement it in a future release.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-120540</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-120540</link>
					<pubDate>Tue, 07 Oct 2014 12:48:23 +0000</pubDate>
					<dc:creator>Liquidator</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there!</p>
<p>I added both CSS to style.css (child&#8217;s) and implemented that code into my functions.php. However, Lato still appears on page and there&#8217;s no Helvetica at all:<br />
<a href="http://awesomescreenshot.com/0443m4ma96" rel="nofollow">http://awesomescreenshot.com/0443m4ma96</a></p>
<p>Any fix on it?</p>
<p>Thank you</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-120862</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-120862</link>
					<pubDate>Tue, 07 Oct 2014 21:21:34 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>You can change font through Appearance &gt; Customize &gt; Typography. You&#8217;ll need to &#8220;Enable Custom Fonts&#8221; checkbox. If it&#8217;s already checked. Uncheck the box and recheck it then choose the font of your choice. Make sure you save and publish the changes.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-120876</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-120876</link>
					<pubDate>Tue, 07 Oct 2014 21:39:03 +0000</pubDate>
					<dc:creator>Liquidator</dc:creator>

					<description>
						<![CDATA[
						<p>Well, i did uncheck that value. No result.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-121125</guid>
					<title><![CDATA[Reply To: Remove Google Font Lato]]></title>
					<link>https://theme.co/archive/forums/topic/remove-google-font-lato/#post-121125</link>
					<pubDate>Wed, 08 Oct 2014 07:26:28 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>We need you to provide us with your URL to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

