WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My Blog is GoneLooks fine to me.
Forum: Fixing WordPress
In reply to: site being redirectedCheck header.php template file and look right before </head> to see some off the wall <script> that shouldn’t be there. Delete that then remove write protections on header.php until you remove the malware.
Thats typically how they are done and it will at least get rid of it until you can remove it permanently and correctly.
Forum: Fixing WordPress
In reply to: H1 tags missingThe theme looks like a premium theme from themeforest so you might need to ask them for help. This forum is really just support for the free themes in the directory that we all have access to.
But yes, you might need to get in the file manager and go to /wp-content/themes/realhomes/ and find the file.
Forum: Fixing WordPress
In reply to: H1 tags missingIt won’t be a .css file. That is for styling.
The template change will be in a .php file. It could possibly not be in the child theme either.
Forum: Fixing WordPress
In reply to: H1 tags missingYour normal pages from page.php are H1 now. All the links in your menu go to pages with H1.
As for your home page it could be a lot of places really if it is not in index.php. Just need to keep looking.
Forum: Fixing WordPress
In reply to: H1 tags missingIf you figure it you then you might want to consider a child theme for the permanent changes. This would be only useful if you plan on updating your template to newer versions.
Forum: Fixing WordPress
In reply to: H1 tags missingThey are all different. But I’d first go to appearance -> editor
Then index.php could be your home page.
single.php is your single blog page.
page.php is your normal page.Do a search in the template for <h3> and change to <h1>. Now this will most likely change the appearance of your titles also (make them bigger).
Forum: Fixing WordPress
In reply to: H1 tags missingNeed to find the template and change the H3 tag to H1 if you wanted it. But really it won’t have any big impact. If you aren’t comfortable on changing templates I would just leave as is.
Forum: Fixing WordPress
In reply to: Website Speed testThey work on different ways to grade the site, that’s all.
Forum: Fixing WordPress
In reply to: Empty space in the right sideIt is the below that is causing it in your bootstrap.min.css
.row { margin-right: -15px; margin-left: -15px; }So in your style sheet you can just do the below to override it. But it might not give you what you expect for appearance.
.row { margin-right: 0px; margin-left: 0px; }Forum: Fixing WordPress
In reply to: Can't get to login pageGo to wp-content/plugins/ and change the Better WP Security folder name to something else. This will disable it.
Forum: Fixing WordPress
In reply to: I am facing this problem when installing wordpressWhat method are you using to install WP? Seems your database tables do not exist but it would be helpful to know how you are doing this and when you are seeing it.
Forum: Fixing WordPress
In reply to: The hover issue again…Probably just easiest for you to install and use https://wordpress.org/plugins/mobile-menu/ to change just your mobile menu to a mobile friendly one instead of messing with code.
Forum: Fixing WordPress
In reply to: Change h3 font-sizeJust pot the link in the comment box here.
Forum: Themes and Templates
In reply to: Child Theme vs. Custom CSSWhy do you say that? What if there is a security patch added? Is that not a good reason?
I will re-phrase since I can see how you can misinterpret that sentence.
Out of the 100’s of free and paid themes I have used a majority of them never get any updates at all let alone any security update. Most theme creators make a theme and run.
There are exceptions to the rule of course.
Then with the remaining themes I have used I have never been hacked due to a security flaw in the theme. So my comment is based off of personal experience only and there are plenty of people who sit on both sides of the fence on this one.