j09
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t Find Mixed ContentForum: Fixing WordPress
In reply to: tabbed content linking to vertical within horizontal tabThe first tab always displays because you’re using an empty anchor. An empty anchor does nothing but take you to the top of the page. The first tab shows up because it’s visible by default when the page loads.
You need to give the tabs different
htmlid‘s
Your tags for the tabs should look something like this:<element class="someclass" id="firsttab"> items inside first tab </element><element class="someclass" id="secondtab"> items inside second tab </element><element class="someclass" id="thirdtab"> items inside third tab </element><element class="someclass" id="fourthtab"> items inside fourth tab </element>You can then create links that point to those specific tabs.
like so:
http://example.com/page/#firsttab<—- this will open / point to the first tab
http://example.com/page/#secondtab<—- this will open / point to the second tab
http://example.com/page/#thirdtab<—- this will open / point to the third tab
http://example.com/page/#fourthtab<—- this will open / point to the fourth tabYou can also link to the tabs if they are on the same page using the anchor only.
For example:
Placing this link at any place on the page will take you to/open the third tab
<a href="#thirdtab">Open third tab</a>Let me know if you need more help.
Forum: Fixing WordPress
In reply to: Google Console EmailThis might be of interest:
If you’re sure your running on 4.7.2, then I think you’re ok and google’s email is just a bit late. If you’re on 4.7.0 or 4.7.1 then I recommend updating to 4.7.2 as soon as you can.
4.7.0 and 4.7.1 had security vulnerabilities that were resolved with the patch to 4.7.2
More on that here: https://make.wordpress.org
Forum: Fixing WordPress
In reply to: Upgrading from 2.5.7 to 4.7.2Back everything up.
I would clone the 2.5.7 install to a subdomain and run the update on the cloned copy first to see what happens.
Forum: Fixing WordPress
In reply to: Moving my website from background to frontTry this and see if there’s enough information to guide you through the process.
Moving WordPress from Subfolder to Root
- This reply was modified 9 years, 3 months ago by j09.
Forum: Fixing WordPress
In reply to: My website won’t loadYou’re welcome.
I can confirm that the website loads without problems on my end now.
I’m glad you got that sorted. Good luck!
Forum: Fixing WordPress
In reply to: How to insert CSS stylesheet using enqueueThis doesn’t answer your question but…
If your intention is to only add the CSS code mention in your post, you don’t need to create a new CSS file.
Since you’re using WordPress 4.7, you can go to the customizer and add the code directly from there (Under Additional CSS).
Let me know if you need more help
Forum: Fixing WordPress
In reply to: My website won’t loadThere are many ways to approach this. Choose your poison.
1- Turn off all of your plugins temporarily and see if that solves the issue (You can keep whatever application you’re using to edit the page on the front end if you have to)
Or
2- Revert back to the default theme and see if that solves the issue and then you can edit the content of the page then reenable your custom theme to check if the problem is sill there.
Or
3- Try to edit the content from the back end (admin). I don’t know how your theme works but you should look for a text widget under the “our team” section. That’s where the videos are located.

P.s: you can see that there’s an
HTMLcode error in thespanabove the text widget that contains the videos, which may or may not be the cause of the issue.Or
4- You can manually remove the preloader via browser dev tools (F12) to be able to edit the page then save it.
Let me know if you need more help.
Forum: Fixing WordPress
In reply to: Blurry LogoThe image file itself is not sharp. This is a direct link to the file Logo
IF your original image is sharper than that, You might want to turn off WordPress jpg compression
Forum: Fixing WordPress
In reply to: My website won’t loadThe website is loading fine on my end.
Your problem is the preloader (the loading screen).
There’s something wrong with it. The website is fully loaded but won’t show because it’s behind the loading screen and the loading screen won’t go away like it’s supposed to.
I can see the 4 Youtube videos towards the bottom of the screen.
is the preloader a part of your theme or are you using a plugin to add it?
Forum: Fixing WordPress
In reply to: Rendered CSS for menu is wonkygzipmay be the cause. Turn offgzipand see if that solves your issue first.Forum: Fixing WordPress
In reply to: Home Page won’t updateGreat!
I’m glad you sorted that out. Good luck!
Forum: Fixing WordPress
In reply to: Home Page won’t updateNo problem. Hope you find something that solves the issue.
Forum: Fixing WordPress
In reply to: Home Page won’t updateI see
X-Proxy-Cachein your response headers.This may be an indication of server-based caching (Beyond WordPress)
This will still serve cached pages even if you don’t have any caching plugins.
The cache for your homepage has this expiration date:
Fri, 03 Feb 2017 14:13:44 GMTTalk to your hosting provider about purging the proxy-cache
Or you can try plugins like this one:
I have not tried any of them So I can’t say anything about whether or not it will work.
Forum: Fixing WordPress
In reply to: Home Page won’t updateWhile you may have disabled your caching plugin, your browser may still be hanging on to a cached copy of your old homepage.
See if this works