One page is showing the “Index of /” error

Doing below works: Disable all plugins. Using default .htaccess if your server used apache for webserver. Enable WP_DEBUG in your WordPress to see current error. Make sure about that page using the Page format? Otherwise, delete this page and try to create new page.

Regular 503 error every 5 minutes for logged in users

From my experience, you had far, far too many plugins. Disable everything, choose one of the twenty**** default themes and try again. You should also check your server log and see if you can see anything in there that would help (and post it here). Lastly, take a backup of your entire site (code, uploads, … Read more

The TypeError: this.each when wp.media.open() after using popper.js for bootstrap 4

I have fixed the problem through correction of the jQuery code. This is an example jQuery( document ).ready(function($) { // Instantiates the variable that holds the media library frame. var file_frame, meta_image_preview, meta_image; $(‘.image-upload’).on(‘click’, function( event ){ meta_image_preview = $(this).parent().parent().children(‘.image-preview’); meta_image = $(this).parent().children(‘.meta-image’); event.preventDefault(); // If the media frame already exists, reopen it. if ( … Read more

style.min.css code issue

You can tell by the ID on the <link href=”https://wordpress.stackexchange.com/questions/287569/… tag that the stylesheet”s ID is mesmerize-style, so you should be able to dequeue with this function in your child theme. wp_dequeue_style( ‘mesmerize-style’ ); Make sure it’s hooked into wp_enqueue_scripts with a higher priority than the parent theme’s hook (probably 10). That’s the general answer … Read more