mtjarrett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unexplained re-direct to RSS feedHi Steven,
Thanks for the suggestion.
So I just installed Health Check, put it in Troubleshooting mode, and the link still takes me to a feed (the feed is just invalid now because Powerpress is disabled).
Forum: Fixing WordPress
In reply to: Confusing RSS IssuesHi @corrinarusso . I resolved the issue so you wouldn’t be able to see a difference any more. I’m still not sure why there was an issue.
It’s kind of like my truck. Every now and then it won’t start in Park. I have no idea why – and neither does the mechanic because it always starts in Park when I take it there.
However, it will always start in Neutral.
Since I don’t have time to leave my truck at the mechanic for a month until it finally one day gives him a problem as well, I just deal with it.
Thanks for taking a look. I really appreciate that.
Forum: Fixing WordPress
In reply to: Accessing files from another wordpress installationSo, I have figured out why this won’t work. Can anyone suggest another way for me to have two sites using the same basic child theme?
Forum: Fixing WordPress
In reply to: Adjusting post date by 1 daycomment deleted
- This reply was modified 6 years, 2 months ago by mtjarrett.
Thanks James. Yes, it continued but then I deacivated Jetpack too and when I reactivated it I had to set it back up.That seemed to fix teh problem.
Forum: Fixing WordPress
In reply to: “Live Broadcast” on Audio PlayerHi @lacynw,
Sorry to report but it’s still a problem. I had to stop using the plugins. Now, whenever someone reports an issue, I just have them delete the home-screen icon and re-install. That seems to solve the issue.
Forum: Fixing WordPress
In reply to: “Live Broadcast” on Audio PlayerI’m still having trouble with this please help.
Forum: Fixing WordPress
In reply to: Creating Page Templates in TwentyNineteenThanks @joyously
For anyone else wondering go to wordpress.com and ask them there. Here:
https://en.forums.wordpress.com/topic/combining-accounts-12/#post-3297561Forum: Fixing WordPress
In reply to: Creating Page Templates in TwentyNineteenHi @joyously,
I read the page you referenced and I found what I have done in the past. But how does that work with twentynineteen. A) there is no Templates folder only a Template-parts folder. Which part would I be creating? And B) currently there is no dropdown box in the editor to choose that template.
Any help here is appreciated. Thank you.
Forum: Fixing WordPress
In reply to: Child theme issuesFor anyone else who is having this issue, the answer is that you must change your theme and then change back. Then you will see the changes take effect.
Forum: Fixing WordPress
In reply to: Child theme issuesI’m sorry if I’m being unclear. I’ll try again. I changed the template of my child theme temporarily to see if it would take effect. It did not. That is the problem I am trying to troubleshoot here.
So for instance, when I have the template in the child theme as Hemingway, Chrome shows me in the developer tools that the style.css that it is using does in fact say Template: hemingway. Additionally, the website looks as if it is using Hemingway as its template and the developer tools also verify that the two themes being used are Hemingway and Hemingway-kid.
If, however, I change the template in my child theme to say Template: twentynineteen. This happens – The Chrome developer tools show me that the stylesheet it is using does in fact say, Template: twentynineteen. BUT the website is still being based of of Hemingway and the Chrome developer tools verify that the two themes being used are still Hemingway and Hemingway-kid.
Forum: Fixing WordPress
In reply to: Child theme issuesI am making a child theme from Hemingway. What I was pointing out above is that my style.css is not being ‘obeyed.’ In other words, although I changed the style.css to say that the template was twentynineteen, and although Chrome was showing in the developer tools that it was receiving the correct style.css, Chrome was also showing in the developer tools that it was continuing to use Hemingway as the template.
Additionally, if I go an change my active theme to something else and then change it back to my child theme, then the change seems to take effect.
The only way this makes sense is if wordpress stores the template information in the database somewhere rather than reading it from my child theme style.css every time.
- This reply was modified 7 years, 3 months ago by mtjarrett.
Forum: Fixing WordPress
In reply to: Child theme issuesI have turned off server caching, and I have disabled caching for Chrome. The only thing that seems to make changes is if I switch themes and then switch themes back. Does WordPress have some sort of caching system now?
Forum: Fixing WordPress
In reply to: Child theme issuesThis is what I have in my child theme style.css
/* Theme Name: Hemingway-kid Template: twentynineteen Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html */And this is what I have in my child theme functions.php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_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 ), wp_get_theme()->get('Version') ); }If you run the Chrome inspector on the site, you see that the style.css shows exactly what I pasted above. It declares the Template to be twentynineteen (once again for troubleshooting purposes, this is a child of Hemingway). But also in the inspector you see that Hemingway is loaded, not Twenty-Nineteen.
This is what I can’t figure out.