I believe this article applies mostly to people operating a small business. Especially if what you do on the web is primarily a business endeavor for you. This type of question is always one of the many you face regarding completing webwork on your website. There are...
Web Development
How to Manage Spam Comments in your Website
In doing routine server audits, I often notice that some posts on various websites are getting spammed. This usually means that a control on the post (when it was originally created) has the "Allow Comments" and/or "Allow Pings" left turned on. At that point I check a...
Fixing an ERR_TOO_MANY_REDIRECTS Redirections Error
A usual part of solving issues as they arise in the website development business is searching Google for solutions. Very seldom have I ever been the first or only individual to find a particular problem needing a solution. I don't believe the situation I'll describe...
How to Refresh your Web Browser page
Sometimes there are procedures that are taken for granted by us here at CharlesWorks. We work in web browsers every day. So it is easy for us to forget that most people don't know how refresh their web browser. This process may be needed if changes are made to a web...
Using All-in-One WP Migration plugin to back up your website
The All-in-One WP Migration plugin is an excellent plugin for backing up, copying, cloned or migrating your WordPress website. It's become my favorite and we use it here at CharlesWorks extensively. Issues using the All-in-One WP Migration plugin The only time we have...
Fixing a Validation Glitch on the Date Field on a Contact 7 Form
This article would apply to websites containing older code. Generally, the website was built some time back. It may use a theme and contain plugins that are no longer supported (haven't been updated in a while). The site would have had something along the lines of an...
Best Practices for Mitigating Website Hacks
We at CharlesWorks are often asked by our web clients if their site is protected from malware and getting hacked. They also want to know if there site IS hacked, whether there be a charge to fix it. The totally hack-proof website The totally hack proof website has no...
Removing the WooCommerce Product Long Description metabox
In order to remove the product long description metabox, simply add the following snippet to your website's functions.php file: function remove_pages_editor(){ remove_post_type_support( 'product', 'editor' ); } add_action( 'init', 'remove_pages_editor' ); Note: This...
How to Override the WordPress default 45 tag cloud limit
If you have a WordPress website with many tags, you have undoubtedly ran into a situation where you notice they are not always all displayed. This happened to me when adding a new tag and I noticed it was not displayed. Researching this on the Internet revealed a lot...
Gravity Forms Styling for Submit Button
I was having trouble making a nice SUBMIT button on a Gravity Form. Looking for help out on the Internet had all kinds of purported solutions, some recommending getting additional plugins and so on. Luckily, I didn't need to add any plugins! We always want to avoid...