Unicornflakes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't open my site, something wrong in webmatrixYES I found the answer:
I went into site > settings > and changed the url which had for some reason changed the number after https://locoalhost: to the wrong number. Now it works ??Forum: Fixing WordPress
In reply to: Can't open my site, something wrong in webmatrixHi again, didn’t work to reinstall webmatrix.
Any otehr suggestions?Forum: Fixing WordPress
In reply to: Can't open my site, something wrong in webmatrixThanks for your help.
Unfortunately nothing of this worked. Any other suggestions?
I’m going to try re-installing microsoft webmatrix.Forum: Fixing WordPress
In reply to: How to make child theme header.php override parent?YAY! Thank you stephencottontail, it worked! ??
*happy dance*Btw, no offence taken Brett, that could have been the issue, I just recently learned how to activate child themes ??
Forum: Fixing WordPress
In reply to: How to make child theme header.php override parent?That is what I did. I copied the entire file and put it in my child theme folder. It still does not override.
Do I need to add something in the functions.php to make it load the other php files?
Forum: Fixing WordPress
In reply to: Child theme activation resulted in error 500OOOOOOH I FOUND THE ERROR! It was something wrong with my php file. but now i found the correct code here https://themify.me/docs/child-themes
pasted it and now it works! Oh the joy!
Forum: Fixing WordPress
In reply to: Change headline colour and margin/padding. Can't find it in the CSS.Oh never mind, it WORKED! I just hadn’t changed which theme I edited, I found the Hemingway Child ??
Forum: Fixing WordPress
In reply to: Change headline colour and margin/padding. Can't find it in the CSS.Thank you so much!
I didn’t even know about the child theme thing.
So I’m trying to create a child theme. In the functions.php film, I amsupposed to add this code, right?
<?php
function theme_enqueue_styles() {$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style )
);
}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
?>Am I missing something now, I’m not good at understanding php files. Have I filled in something incorrectly?
The problem is that my child theme doesnt show up in appearance> themes > editor.
Forum: Fixing WordPress
In reply to: Change headline colour and margin/padding. Can't find it in the CSS.hemingway theme