Forestone
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: One page won't loadI 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
Forum: Fixing WordPress
In reply to: One page won't loadWell the shopping plugin i’m using is woocommerce. always thought it worked alright
Forum: Fixing WordPress
In reply to: One page won't loadwell 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.
Forum: Fixing WordPress
In reply to: One page won't loadThis 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