There are many times when we might need to know what IP address we are using. We at CharlesWorks use this information mostly for some Under Construction plugins. For example, to allow one to view a website that is using an Under Construction plugin without having to...
WordPress
Using the Insert Pages plugin
We often want to be able to "include" some text from pages or posts into other pages on a website. An advantage of this is the ability to change it in one place and have those changes appear in other places without one having to go in and make those changes...
Adding text into a Divi Builder page on your WordPress website.
If you need to edit text in a page in your Divi Builder WordPress site for your restaurant's menu, or your store's hours, etc., you might find that sometimes it doesn't look the same as other text on the page. You might be trying to copy from a word document or a...
Your Website’s Inaccessibility Issues Might Get You Sued
I started CharlesWorks in June of 1998. One of the reasons is because it was very expensive to get on the web back then. I hoped to change that and make it easier for small businesses and organizations to get on the web. On the Internet user side, I believe everyone...
Divi boxed layout – full width on mobile
add following to css /*** Full Width On Mobile ***/ @media (max-width: 481px) { .et_boxed_layout #page-container { max-width: 100%!important; width: 100%!important; } #main-header, #top-header { max-width: 100%!important; width: 100%!important; } }
Correcting WordPress folder to subdomain URL changes using redirection
Sometimes we might go from a site located in a folder off the root of a site to a subdomain or site of its own in a standalone environment. Why would we want to do this? There are some advantages for separating out your sub-sites into separate sites: Security: With...
How to turn off the WordPress dashboard Jetpack nags
This is a work in progress, so bear with me as it is not done yet! Jetpack, created and maintained by Autommatic, has increasingly moved toward monetization over the past years. As part of this process, Autommatic wants to generate more and more revenue. There was a...
Media Library
Recently I found the "Real Media Library". It helps you with media management. You can organize thousands of uploaded files into folders, collections, and galleries. It is a real file manager that allows you to manage large amounts of files in WordPress. It's my...
Recovering Pages Using Revisions in WordPress
When you make a mistake and break your page, Revisions may hold the solution. Sometimes a page or post in your WordPress site breaks and you cannot get immediate technical support due to it being after business hours, etc. If that happens, you may be able use the...
Changing Out of Stock Text in WooCommerce
Add to functions.php file: function themeprefix_change_soldout ( $text, $product) { if ( !$product->is_in_stock() ) { $text = '<div class="">Sold out</div>'; } return $text; }