No Results Found
The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.
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...