In order to fix the background view on iphones for studiopress wellness pro, all you need to do is to edit the style.css and add the following lines: @media only screen and (max-width: 1140px) { .home .image-section { background-attachment: scroll … [Continue reading]
WooCommerce Hide shipping costs when Free Shipping is activated
This can be achieved using Table Rate Shipping or a code snippet like shown below. These code snippets can be added to your theme/child-theme’s functions.php file. Before adding the snippets, make sure you clear your WooCommerce cache (WooCommerce & … [Continue reading]
Stop PHP injection in wp-content uploads
Hello, in order to stop the php injection in wp-content/uploads you need to do this: Create a .htaccess containing this: <Files *.php> deny from all </Files> You need to put this .htaccess in wp-content/uploads and also … [Continue reading]
Prevent duplicates in a column in Excel
Excel has Data Validation - one unfairly forgotten tool. With its help you can avoid errors occurring in your records. We will be sure to devote some future articles to this helpful feature. And now, as a warm-up, you will see a simple example of … [Continue reading]