The WP Forms plugin for WordPress is fairly popular and one of the plugins I like using for handle form inputs on websites. I especially like being able to tie in Google RECAPTCHA into it which greatly reduces form spam. Form spamming has become big business. Apps...
WordPress
Adding Variable Product info to a Woocommerce Product
Go to edit any product from the products list. You should see a field that says Product Data with a drop down below the text area. Click on the drop down and change the product from a Simple Product to a variable one Click on attributes in the left hand options on the...
Restoring Lost Content in WordPress
Log into your WordPress Dashboard: In a browser, enter https://yourdomainname/wp-admin (if this does not work and you are a CharlesWorks web client, please give us a call or email us and we’ll help). Login with your administrative credentials (you should have been...
Editing Text Modules in Divi
WordPress Edits Log into your WordPress Dashboard: In a browser, enter https://yourdomainname/wp-admin (if this does not work and you are a CharlesWorks web client, please give us a call or email us and we’ll help). Login with your administrative credentials (you...
WordPress Edits
Log into your WordPress Dashboard: In a browser, enter https://yourdomainname/wp-admin (if this does not work and you are a CharlesWorks web client, please give us a call or email us and we'll help). Login with your administrative credentials (you should have been...
Divi Call to Action Module – align buttons
Go to the CTA module Advanced Settings Go to Custom CSS Promo Button Add this code: position: absolute; bottom: 0; left: 0; right: 0; margin: auto; Add this to the hover tab as well to avoid having the button jump up when...
Bulleted Lists Spacing
/* Bulleted list spacing */ li { line-height: 1.7; padding: 5px; } or /* Bulleted list spacing */ .entry-content ol, .entry-content ul { padding: 30px 0px 30px 50px; list-style-position: outside; } .entry-content ol li, .entry-content ul li { margin-bottom: 10px;...
Buttons for Blog Module
Add to css in child theme, and adjust colors accordingly: /* Read more blog button */ .more-link { background-color: #1f568e; display: inline-block !important; color: #fff; padding: 5px 15px; margin-top: 15px; text-transform: uppercase; } .more-link:hover {...
Remove Titles on Images on Hover
Add this script to Theme Options > Integrations section > Head section <script> jQuery(document).ready(function($) { $('img[title]').each(function() { $(this).removeAttr('title'); }); }); </script>
Web Maintenance Explained
I cannot begin to tell you how many people believe that once their website is done they are "all set". Many think they don't have to do anything more to it once it is out there live. While that may seem true in that moment, there is still much that needs to happen and...