On occasion I’ve come across WordPress installations that don’t have English (UK) as an available language and it turns out it’s not such a straight-forward problem to fix. The default WordPress installation comes with all manner of languages including Spanish, Japanese, Indonesian, and Korean, however, English (UK) isn’t always there. I suppose the reasoning behind … Continue Reading
Archives
Adding an SSL certificate to your site – potential problems
Moving a WordPress website to SSL is something we’ll all have to do at some point for existing sites and it can cause a lot of problems. Here is a list of some of the most common problems you may encounter when moving to SSL and HTTPS and how to deal with them. Before we … Continue Reading
WordPress – change the default ‘from’ information
The default email address and from name in WordPress notification emails can be easily changed by editing your functions.php file Simply add the following code (remembering to change the email address and name to the ones you want to use instead) add_filter(‘wp_mail_from’, ‘new_mail_from’); add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’); function new_mail_from($old) { return ‘yourname@yourdomain.com’; } function new_mail_from_name($old) { return … Continue Reading