How to correctly cleaning wordpress options table
How to correctly cleaning wordpress options table
How to correctly cleaning wordpress options table
WordPress site is not loading properly ( showing a min-page)
Redirects do impact performance, especially if you start to stack them. You will likely get better performance by creating custom post types and taxonomies that build the exact URL and content structure you’re looking for.
WordPress Website is very slow after migration
Converting longtext to mediumtext in WordPress wp_postmeta table
First I would visit a single file in the browser, like an image file, to see if the server loads that quickly or not. If the image loads slowly, you will know it is a server speed problem. But if the image is fine, most likely there will be a PHP code slowing the website … Read more
CF7 for radio buttons only, ok?
Accidentally Changed Permalink Structure
So the issue was actually a DDOS attack on our site. I used urlsnarf to see what requests were being placed and there were basically hundreds of POST request from about 20-30 or so IP addresses. Seems quite small scale for what I understood is a typical DDOS attack. It also explains why it took … Read more
If you want to prevent HELLO from loading it’s own styles, this is the code to paste and adjust in your child theme’s functions.php : function hello_elementor_scripts_styles() { // Dequeue parent theme stylesheets wp_dequeue_style( ‘hello-elementor’ ); wp_deregister_style( ‘hello-elementor’ ); wp_dequeue_style( ‘hello-elementor-theme-style’ ); wp_deregister_style( ‘hello-elementor-theme-style’ ); wp_dequeue_style( ‘hello-elementor-header-footer’ ); wp_deregister_style( ‘hello-elementor-header-footer’ ); // Enqueue only child … Read more