How to fix widget loading issue after updates in WordPress 5.8

How to fix widget loading issue after updates in WordPress 5.8

After Update to the latest version of WordPress 5.8, I see a compatibility issue in the Widget Editor. There are several errors, like“The “recent-posts” block was affected by errors and may not function properly. Check the developer tools for more details.” I found that WordPress 5.8 comes with a completely new layout for the widgets….

How to remove image title attribute on hover WordPress

How to remove image title attribute on hover WordPress

Some page builders and themes automatically add title to each image. In this video, we will see how to remove the image title that appears when you hover over an image. Initially, all existing images have a title attribute but when the page is load, it will delete automatically by the jQuery removeAttr() method. Not…

|

[Solved] CSS Styling in WordPress Child theme’s “style.css” file not working

I’m using a Themeforest Premium theme and installed and activated a child theme in order to make various CSS style changes to my website. However, the changes I’ve made to the child theme stylesheet are not working on the website, it’s taking styles from parent theme style.css file. functions.php file has the folowing code, The…

|

[Smush Pro] How to fix Wrong Image Sizes shown in Desktop or Large screen after WPMU DEV CDN Enabled

Problem: When we enable Smush Pro CDN we see the wrong image size in desktop view. The browser shows image size (1024 * 768) (can see by right click save as to see the file name). The container is 1400 px wide so it should take a higher image size and use that instead. If…

| | |

How to add a Back to cart button on the Woocommerce Checkout page

Do you want to display a “Back to Shopping Cart” button on the WooCommerce checkout page? You can use the woocommerce_before_checkout_form action hook to do this. Add this code in the function.php file of your active child theme (or theme) or also in any plugin file. Reference Link: Stackoverflow

| |

How to Disable Product Image Zoom, Lightbox and Product Gallery Slider in Woocommerce

Woocommerce 3+ have built in image zoom Lightbox and product images gallery feature. Most of us love this feature, however, some people would like to remove it. Disable Image Zoom feature on the single product page in WooCommerce Disable Image Lightbox feature on the single product page in WooCommerce Lightbox is a feature which let you click on any images…

| |

VestaCP – WordPress File and Folder permissions & ownership

All files permission need to be reset to 664 and all directories permission needs to reset to 775. And then we need to reset the group to admin. First we will need access to server via SSH Access. Change file permission to 664: Change directory permission to 775: Change file & folder group ownership to…

How to Fix WordPress Pages and Permalinks 404 Not Found Error on Nginx Server
| | |

How to Fix WordPress Pages and Permalinks 404 Not Found Error on Nginx Server

Tested with After switched to Nginx from Apache server WordPress started showing 404 or Page not found errors. Homepage loads but all permalinks are 404 when using Nginx & PHP-FPM What causes the Nginx wordpress permalinks 404 error WordPress recommends PHP-FPM as the PHP handler to take advantage of NGINX. Unfortunately, mod_security rules will not work with…