There are many plugins out there to enhance Woo-Commerce functionality. Here are some of my favorite helpful plugins for use with WooCommerce. This list may be added to over time: Side Cart WooCommerce https://wordpress.org/plugins/side-cart-woocommerce/ Google...
Technical Help
How To Fix WordPress Mobile Image Alignment & Text Wrap Problems
You need to add the margin snippet every time you align and image to right or left. <img class="alignright size-medium wp-image-2440" style="padding: 20px;" src="https://website.com/wp-content/uploads/2022/08/plank-pest-spiders-problems-223x300.jpg" alt=""...
Remove Default Selected State from WooCommerce Checkout Billing Fields
Please put this code in functions.php file. //default checkout state add_filter( 'default_checkout_billing_state', 'change_default_checkout_state' ); add_filter( 'default_checkout_shipping_state', 'change_default_checkout_state' ); function...
Fix “Secure Connection Failed” Error in Google Chrome and Mozilla Firefox and Internet Explorer
We've run into trouble recently loading sites lacking SSL (Secure Socket Layer) encryption on our workstations. The issue has been happening using both Google Chrome and Mozilla Firefox. Researching why this was occurring led me to some possible fixes I will address...
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...
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...