brandonf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Child Theme not recognizing parent functionsOn my original Amadeus css file it says
Theme Name:Amadeus (with a capital A)
There is also a comment in same css file that says:
Text Domain:amadeus
Does that matter?
Also if I accidentally capitalized the A in amadeus, would that make the child theme only work locally? Because it works fine when I run it locally, it’s only on the live site that I have problems.Forum: Fixing WordPress
In reply to: Child Theme not recognizing parent functionsYes That is the theme I’m using. Yes a complete copy of parent theme is in live site.
Yes, the missing fuction is a part of the parent theme.Okay. I think pointing to the Path of the parent theme is what I’m missing. What would be the best way to get the path?
Forum: Fixing WordPress
In reply to: Child Theme not recognizing parent functionsTara, that link tells me to do exactly what I already did. That does not help at all. It works locally, so there must be something else I didnt do.
Forum: Fixing WordPress
In reply to: Child Theme not recognizing parent functionsThanks for the reply,
Yes, the parent Amadeus is installed. I installed my entire wordpress folder. Every single item in my wordpress folder is on my server.Including every other theme i’ve made so far.Thanks Stephen, your solution worked perfectly!
In case anyone else has this problem
In functions.php I have
function sumcakes_scripts() { wp_register_script('extrajs', get_template_directory_uri() . "/js/extra.js", array('jquery')); wp_enqueue_script('extrajs'); } add_action('wp_enqueue_scripts', 'sumcakes_scripts');
and in my javascript file (in this case mine is called extrajs.js) I have the solution provided by stephencottontail above and my code inside. Thanks again stephen!
Forum: Themes and Templates
In reply to: jquery NOT working but javascript is workingOkay Thank you! that worked perfectly.
Forum: Fixing WordPress
In reply to: Help adding custom fields in admin pageOkay.Thanks so much! your post helped me find exactly what I was looking for.