Search Results for 'googleapis'

Home Forums Search Search Results for 'googleapis'

Viewing 15 results - 1 through 15 (of 37 total)
  • Author
    Search Results
  • #206150
    Gal AssafGal Assaf
    Participant
    • Topics: 4
    • Replies: 15
    • Total: 19
    Member since: March 26, 2023

    Hey,

    Logo issue on Mobile – Fixed!
    Thanks

    Regarding the font issue, the code you attached didn’t help for some reason.

    I’ve added this code to the Header.php file Added after the </head> and the issue was solved.

    <style>
    @import url(‘https://fonts.googleapis.com/css2?family=Assistant&display=swap’);

    body.woocommerce div.product .product_title {
    font-family: ‘Assistant’, sans-serif !important;
    }
    </style>

    Can you please confirm that this is ok to add?

    #204383
    Juergen SchlampJuergen Schlamp
    Participant
    Member since: June 9, 2022

    Hello,
    we tried to remove all Google fonts from the sebsite. We used the plugin “Local Google Fonts”.
    All Google fonts are now loaded local, except “Stylesheet – https://fonts.googleapis.com/css?family=%7c%7c&#8221;.
    My Question is how and where can i remove this comment ?

    Thanks,

    Juergen

    #204053
    MarkusMarkus
    Participant
    • Topics: 24
    • Replies: 67
    • Total: 91
    Member since: February 7, 2017

    Hi,

    sorry, I’m again:

    when I have a look in the code on the mainsite b2b-cyber-security.de

    I can see this code:
    ….
    <link rel=”preconnect” href=”https://fonts.gstatic.com” crossorigin=””>
    <link rel=”preload” as=”style” href=”//fonts.googleapis.com/css?family=Open+Sans&display=swap”>
    <link rel=”stylesheet” href=”//fonts.googleapis.com/css?family=Open+Sans&display=swap” media=”all”>
    ….

    before and behind are closed scripts
    can this code come from any plugin?

    Cheers
    Markus

    #203984
    MarkusMarkus
    Participant
    • Topics: 24
    • Replies: 67
    • Total: 91
    Member since: February 7, 2017

    Hello,

    can you help me to find the sources ?

    this 2 Google fonts will still loaded from the site – but I dont know from the theme ? from a plugin?

    https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2
    Initiator: https://fonts.googleapis.com/css?family=Open+Sans&display=swap

    https://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2
    Initiator: https://fonts.googleapis.com/css?family=Open+Sans&display=swap

    There is also loaded https://fonts.googleapis.com/css?family=Open+Sans&display=swap

    The msg. about the preloader code is only sometime shown – realy strange

    Thanks
    Markus

    #201394
    Melanie MelcherMelanie Melcher
    Participant
    • Topics: 6
    • Replies: 13
    • Total: 19
    Member since: October 13, 2015

    Hello Dave,

    now i found the enqueue scripts, but there isn’t any entry “font aewsome” like “fonts.googleapis.com”. I just found skt_full_width_fonts. Which code i have to delete? Here are some examples of my code:

    function skt_full_width_scripts() {
    wp_enqueue_style( ‘skt_full_width-gfonts’, ‘//fonts.googleapis.com/css?family=Roboto+Condensed:400,300,300italic,400italic,700,700italic’ );
    wp_enqueue_style( ‘skt_full_width-fonts’, ‘//fonts.googleapis.com/css?family=Roboto:400,300,700’);
    wp_enqueue_style( ‘skt_full_width-basic-style’, get_stylesheet_uri() );
    if ( (function_exists( ‘of_get_option’ )) && (of_get_option(‘sidebar-layout’, true) != 1) ) {
    if (of_get_option(‘sidebar-layout’, true) == ‘right’) {
    wp_enqueue_style( ‘skt_full_width-layout’, get_template_directory_uri().”/css/layouts/content-sidebar.css” );
    }
    else {
    wp_enqueue_style( ‘skt_full_width-layout’, get_template_directory_uri().”/css/layouts/sidebar-content.css” );
    }
    }
    else {
    wp_enqueue_style( ‘skt_full_width-layout’, get_template_directory_uri().”/css/layouts/content-sidebar.css” );
    }

    wp_enqueue_style( ‘skt_full_width-supersized-default-theme’, get_template_directory_uri().”/css/supersized.css” );
    wp_enqueue_style( ‘skt_full_width-supersized-style’, get_template_directory_uri().”/css/supersized.shutter.css” );
    wp_enqueue_script( ‘skt_full_width-supersized-easing’, get_template_directory_uri() . ‘/js/jquery.easing.min.js’, array(‘jquery’) );
    wp_enqueue_script( ‘skt_full_width-supersized-slider’, get_template_directory_uri() . ‘/js/supersized.3.2.7.min.js’, array(‘jquery’) );
    wp_enqueue_script( ‘skt_full_width-supersized-shutter’, get_template_directory_uri() . ‘/js/supersized.shutter.js’, array(‘jquery’) );
    wp_enqueue_style( ‘skt_full_width-editor-style’, get_template_directory_uri().”/editor-style.css”, array(‘skt_full_width-layout’) );
    wp_enqueue_style( ‘skt_full_width-main-style’, get_template_directory_uri().”/css/main.css”, array(‘skt_full_width-layout’) );
    wp_enqueue_script( ‘skt_full_width-fotorama’, get_template_directory_uri() . ‘/js/fotorama.js’, array(‘jquery’) );
    wp_enqueue_script( ‘skt_full_width-lightbox’, get_template_directory_uri() . ‘/js/lightbox.js’, array(‘jquery’) );

    if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
    wp_enqueue_script( ‘comment-reply’ );
    }
    }
    add_action( ‘wp_enqueue_scripts’, ‘skt_full_width_scripts’ );

    I hope you can help me.

    Kind regards,

    Christian

    markus3markus3
    Participant
    Member since: January 12, 2018

    Hi,

    we´re using the fitness – theme here and have to remove all fonts.googleapis.com – related font-loads and replace them with “local” fonts. This is because of GDPR-Reasons forcing us to do so in germany.

    How can this be done without destroying the layout etc.

    Kind regards,

    Markus

    Carsten KöberCarsten Köber
    Participant
    Member since: January 13, 2022

    I have an issue with google fonts an the problem concerning privacy.

    On my website I use just Arial as a local font, all theme-settings are adjusted therefore with the customizer.

    Although, when I look at an analysis of my website (for example on my startpage with the Chrome-Browser, right click, examine) there ist still existing “fonts.googleapis.com” in the sources-register and reference to the “assistant”-font.

    As I can see I don’t use any google-fonts (especially the assistant-font) on my website – how can i get rid of this issuce concerning privacy?

    #133114

    Topic: codex

    in forum All Other Themes
    info1334info1334
    Participant
    Member since: July 2, 2018

    Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. Learn more.

    Resource Savings in ms
    https://www.signaturecarriage.com/wp-content/cache/wpfc-minified/knay0g7l/ftoet.css 110 ms
    https://fonts.googleapis.com/css?family=Roboto%3A400%2C100%2C300%2C500%2C700&ver=5.2.4 230 ms
    https://fonts.googleapis.com/css?family=Roboto+Condensed%3A400%2C300%2C300italic%2C400italic%2C700&ver=5.2.4 230 ms
    https://fonts.googleapis.com/css?family=Lato%3A400%2C100%2C100italic%2C300%2C300italic%2C400italic%2C700%2C700italic%2C900%2C900italic&ver=5.2.4 230 ms
    https://fonts.googleapis.com/css?family=Montserrat%3A400%2C700&ver=5.2.4 230 ms
    https://fonts.googleapis.com/css?family=Montserrat&ver=5.2.4 230 ms
    https://fonts.googleapis.com/css?family=1&ver=5.2.4 230 ms
    https://www.signaturecarriage.com/wp-content/cache/wpfc-minified/8689gx4g/ftoet.css 350 ms
    https://www.signaturecarriage.com/wp-content/cache/wpfc-minified/2oiaw1px/ftoet.js 430 ms
    Recommendations by Google PageSpeed Insights, click here for more info.

    Estimated Savings
    Preload key requests
    1.32 s
    Eliminate render-blocking resources
    0.92 s
    Remove unused CSS
    0.6 s
    Serve images in next-gen formats
    0.6 s
    Reduce server response times (TTFB)
    0.26 s
    Efficiently encode images
    0.15 s
    DiagnosticsMore information about the performance of your application. These numbers don’t directly affect the Performance score.
    Ensure text remains visible during webfont load
    Serve static assets with an efficient cache policy 24 resources found
    Avoid chaining critical requests 18 chains found
    Keep request counts low and transfer sizes small 34 requests • 779 KB

    #122212
    compras1compras1
    Participant
    Member since: August 20, 2018

    Hi,

    we are using a multisite wordpress and have a problem with jquery loading on head.

    wordpress is loading jquery this way:

    https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes//jquery-ui.min.css?ver=1.11.4

    and you got a 404
    It seems the systems is not including “them name”, for example this url works properly:

    https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.min.css?ver=1.11.4

    You can see a real example in this page:

    https://www.piscinasramos.es/trabajos-imagineselo-y-nosotros-lo-construimos-piscinas-ramos-sevilla.html

    #116825
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31252
    • Total: 31252
    Member since: August 16, 2013

    Hi,

    Kindly use this code in header.php before closing head tag.
    <link href="https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">

    Regards,
    Dave

    #111030
    Fay DixonFay Dixon
    Participant
    Member since: September 8, 2016

    Hello

    Im experiencing the same problem as the guy in this forum with my http stating a hard failure with the import of the fonts from google – https://www.sktthemes.org/forums/topic/https-mixed-content-problem-with-google-fonts/

    The following sites I’m facing problems on
    • Exportcrating.co.za – SKT Auto Car
    “A file with an insecure url of “http://fonts.googleapis.com/css?family=Lato&#8221; was loaded on line: 99 of https://exportcrating.co.za/.
    This URL will need to be updated to use a secure URL for your padlock to return.”

    • Germistonvet.co.za – Pet Care
    “A file with an insecure url of “http://fonts.googleapis.com/css?family=Roboto&#8221; was loaded on line: 156 of https://germistonvet.co.za/.
    This URL will need to be updated to use a secure URL for your padlock to return.”

    #104605

    In reply to: Girlie Pro

    NigelNigel
    Participant
    • Topics: 183
    • Replies: 333
    • Total: 516
    Member since: March 17, 2016

    still not working

    https://coastal-wedding-event-hire.co.uk/wedding-and-special-event-styling-ideas/

    this is the code with your edit added (do you want access to this site?)

    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id=”content”>
    *
    * @package SKT Girlie
    */
    error_reporting(0);
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
    <meta name=”SKYPE_TOOLBAR” content=”SKYPE_TOOLBAR_PARSER_COMPATIBLE”>
    <meta name=”viewport” content=”width=device-width”>
    <link rel=”profile” href=”http://gmpg.org/xfn/11″>
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
    <!–[if lt IE 9]>
    <script type=”text/javascript” src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
    <link rel=”stylesheet” href=”<?php echo get_template_directory_uri(); ?>/css/ie.css” type=”text/css” media=”all” />
    <![endif]–>
    <?php
    wp_head();
    $themename = wp_get_theme();
    $themename = preg_replace(“/\W/”, “_”, strtolower($themename) );
    if( !get_option( $themename ) ) {
    require get_template_directory() . ‘/index-default.php’;
    exit;
    }
    ?>
    <link href=”https://fonts.googleapis.com/css?family=Petit+Formal+Script” rel=”stylesheet”>
    </head>

    #104601

    In reply to: Girlie Pro

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31252
    • Total: 31252
    Member since: August 16, 2013

    Hi Nigel,

    Kindly edit header.php file and paste below code just above </head> tag:

    <link href="https://fonts.googleapis.com/css?family=Petit+Formal+Script" rel="stylesheet">

    Regards,
    Dave

    #104439

    In reply to: Girlie Pro

    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    Hi,

    Kindly edit header.php file paste below code into the tag:

    <link href="https://fonts.googleapis.com/css?family=Petit+Formal+Script" rel="stylesheet">

    Regards,
    Shri

    #96710
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31252
    • Total: 31252
    Member since: August 16, 2013

    Hi,

    Kindly go to header.php and use this code just before closing the head Tag "</head>".

    <link href="https://fonts.googleapis.com/css?family=Cormorant" rel="stylesheet">

    Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:

    Add this code there:

    body { font-family: 'Cormorant', serif !important;}

    Regards,
    Dave

Viewing 15 results - 1 through 15 (of 37 total)