The spamming of web forms has grown tremendously over the past several years. Spamming forms is inevitable with any forms on websites. This has little or nothing to do with where your website is hosted. The problem The main problem is that even though it is, and has...
Technical Help
How to Turn Off Post or Page Comments
Keeping your site cleared of spam comments will also allow it to operate more efficiently. Getting spam comments has nothing to do with your web hosting. It has to do with setting up what is necessary to mitigate the spammers. This will help immensely with keeping...
Fixing a broken Twenty Ten theme after latest update
Within days of this writing, the Twenty Ten theme was updated. The fact that this theme is still kept up is a very good thing from a security point of view. The update included what appeared to be more extensive uses of blocks in WordPress. In my opinion, WordPress...
Adding a Text Link to your Website
Nowadays it can be very handy to add a text link to be able to text someone from a web page. To create a hyperlink to text only, one needs only add this code: <a href="sms:1-408-555-1212">New SMS Message</a> Note that this functionality may be browser and...
Discovering Website and Email Addressing with NSLookup
Open Command Prompt window type nslookup and enter set type=any (domain name)
Dealing with “Reply To:” issues in WordPress form outputs
Spam Prevention nightmares Spam prevention has been a nightmare for all involved since even before I began CharlesWorks in 1998. Spammers: they are always trying to find ways around the spam protection. Email users: It is a constant battle trying to sort spam from...
Navigation Font on Smaller Screens
@media (max-width: 1600px) { #menu-home li, #menu-home li a { font-size: 16px !important; padding-right: 2px!important; } } add the above to child theme css add css id of menu-home to module
Viewing Google and Divi fonts
There are some instructions for using high quality fonts here: https://developers.google.com/fonts/ The actual listing of fonts is here: https://fonts.google.com/
Set up hosted exchange or Office 365 email on Apple iPhone, iPad, and iPod Touch
This post explains about setting up your Microsoft Hosted Exchange or Office 365 email account using the Outlook for iOS app available from the Apple Store or the built-in iOS mail app. Setting up email with Outlook for iOS Open Outlook for iOS. You'll see an icon...
Avoid Typography Widows or Orphans
add the following to functions file /** * Avoid Typography Widows */ function kl_avoid_content_widows( $content ) { $pattern = '@(?:\s)([[:punct:][:word:]]+)(?:\s)(?!/>)([[:punct:][:word:]]+)(?:\s)([[:punct:][:word:]]+)</(p|h1|h2|h3|h4|h5|h6)>@m';...