Best wordpress security & maintenance

How to Edit WooCommerce Checkout Fields

Adding a simple function to the child theme’s functions.php <?php // WooCommerce Checkout Fields Hook add_filter( ‘woocommerce_checkout_fields’ , ‘custom_wc_checkout_fields’ ); // Change order comments placeholder and label, and set billing...

.htaccess force SSL

To force SSL / https:// on domain add those code to the .htaccess file: RewriteCond %{HTTPS} off # First rewrite to HTTPS: # Don’t put www. here. If it is already there it will be included, if not # the subsequent rule will catch it. RewriteRule .*...