Jack
Forum Replies Created
-
Forum: Networking WordPress
In reply to: ONLY super admin of multisite gets 504 gateway timeoutIs your AWS running a load balancer or the like? This doc applies checking certain settings when it comes to using web applications:
Forum: Fixing WordPress
In reply to: Unable to get to Login pageThat looks like the hosting server isn’t processing php at all. In other words, php may be deactivated.
You should talk to your web host. This could potentially be a security vulnerability as well.
Forum: Networking WordPress
In reply to: Multisite subsite permalink shows / home page inaccessibleHowdy,
Based on what you said about plugins, I would recommend comparing the plugins on the broken site against the ones on a child site that works.
It may help to have the plugin listings open on two separate tabs so you can go through them one by one. If you see a plugin that the working site doesn’t have, try deactivating it and check if that resolves the problem. You don’t need to delete the plugin, just deactivate it.
Make sure you have a good full site backup as well if you don’t have one.
Forum: Networking WordPress
In reply to: Multi Site Maintenance ModeHowdy,
Have you tried deactivating the Coming Soon & maintenance mode plugin? You don’t need to delete it, just click the “deactivate” link in the plugin listing page.
Forum: Networking WordPress
In reply to: WordPress Registration ERRORHowdy,
Do you have a plugin that modifies the wp-login page? Or are you loading your own custom scripts there?
Forum: Fixing WordPress
In reply to: multisite site being marked as spamIs it getting marked as spam by Google, or is it marked as spam within WordPress’ site settings?
Forum: Fixing WordPress
In reply to: Blank dashboardAs long as you got it resolved, that’s good.
I’d let the theme developer know what happened in case they’re interested in fixing their theme issue.
Forum: Fixing WordPress
In reply to: Blank dashboardMake sure you have a full back up of the site now if you don’t have one already.
Are you using a custom theme? Can you switch your theme to a default one like 2017? This will at least pin down a theme issue.
Since you know how to use FTP, do you see any files named “error_log”?
Forum: Fixing WordPress
In reply to: Remove Link in Header from one pageYou can do this with css only, but it’s a bit tricky. You have to target the page id that is output as a class on the <body> tag. I also crafted a declaration that targets the a tag with that notice.pdf link
body.page-id-8 a[href*="Notice.pdf"] { display: none !important; }
Here page-id-8 correlates to your home page, but you may need to change that to a different id if you want this to happen on a different page than the home page.
- This reply was modified 7 years, 5 months ago by Jack.
Forum: Fixing WordPress
In reply to: jQuery triggers not working on mobile menuthe above script is the logic most jQuery menus do it. You can always find zillions of opinions of doing it “cleaner” but your script is a fairly standard way of doing it.
The main main is that it doesn’t rely on the hover listener to do the heavy lifting. It uses the click listener. Mobile browsers translate taps to clicks well across the board.
Forum: Fixing WordPress
In reply to: jQuery triggers not working on mobile menuSeeing the css declarations for the mobile menu would help as well. For example, I sometimes see issues like this being caused by z-index.
Also, the hover event listener is still wonky on actual mobile devices. You can Google search that more to see how people are getting around the limitation. Not sure what you end goal is with hover.
Forum: Everything else WordPress
In reply to: WordPress advanced learning resourcesWhen I was at your stage, I learned a lot from this book:
It’s more advanced and in depth than many resources out there. After learning the fundamentals, it was difficult to find more advanced learning resources.
Getting better at PHP in general is always helpful. Under the hood, the WP_Query class is a PHP class. I started to think of WordPress as a layer on top of PHP. This helped me write better custom features where I can extend WordPress with my own PHP.
Forum: Localhost Installs
In reply to: Changing URL but getting warningNo mistake at all! I can see how necessary that plugin is. It should be incorporated into the core, in my opinion.
Forum: Localhost Installs
In reply to: Changing URL but getting warningPlease post on that plugin’s specific support site:
https://www.ads-software.com/support/plugin/wordpress-mu-domain-mapping
Forum: Fixing WordPress
In reply to: Minify & General Google Page SpeedMany caching plugins have an option to minify JavaScript and CSS. I recommend looking into W3 total cache’s own support forum if you need help with it: