Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Forestone

    (@forestone)

    I got this from the console log

    The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol.

    I have no idea how to change it

    Thread Starter Forestone

    (@forestone)

    Well the shopping plugin i’m using is woocommerce. always thought it worked alright

    Thread Starter Forestone

    (@forestone)

    well normally you add the link with the fonts to your html file, but since i’m working with a child theme, I had no idea how to add it. So I looked up a way I could add it to the childtheme.

    Thread Starter Forestone

    (@forestone)

    This was the code I used:

    <?php //Opening PHP tag

    function load_fonts() {
    wp_register_style(‘googleFonts’, ‘http://fonts.googleapis.com/css?family=Overlock|Carme|Karla|PT+Sans’);
    wp_enqueue_style( ‘googleFonts’);
    }

    add_action(‘wp_print_styles’, ‘load_fonts’);

    ?>

    Were can you check the error log? 0.0

Viewing 4 replies - 1 through 4 (of 4 total)