Here’s a link to how to add font awesome icons to your menu. It saves memory because it doesn’t use a plugin and also looks professional. How to Add Icons to Custom WordPress Menus Without Plugins I tried it on a DIVI website and had to add the following css. Keep in mind your menu ..
Category : Website Builder Platforms
Here’s an easy way to hide the default Word Press editor for a specific template. WordPress: Hiding default content editor (WYSIWYG) for a specifi..
Have you ever noticed that the trending bar in the secondary menu, top left of header only shows 3 posts? What??? Never noticed, until someone mentioned it in one of these groups I’m in. With that said, I of course, had to rectify the situation immediately and did an exhaustive Google Search and found the ..
I come to love the Elegant Themes by using DIVI. I started loving EXTRA more for certain projects but noticed some things were different in the way it was coded, like how to manually add more social media icons. There’s instructions on how to manually add social icon to DIVI, but not for EXTRA. Not ..
Click here for some great instructions on how to add social media icons to the Elegant Theme’s DIVI theme. It does take some technical know how. Here’s some abbreviated instructions. In the style.css is the list of codes: .et-social-facebook a.icon:before { content: ‘\e093‘; } .et-social-twitter a.icon:before { content: ‘\e094‘; } .et-social-google-plus a.icon:before { content: ‘\e096‘; } .et-social-pinterest a.icon:before { content: ‘\e095‘; } .et-social-linkedin a.icon:before { content: ‘\e09d‘; } .et-social-tumblr a.icon:before { content: ‘\e097‘; } .et-social-instagram a.icon:before { content: ‘\e09a‘; } .et-social-skype a.icon:before { content: ‘\e0a2‘; } .et-social-flikr a.icon:before { content: ‘\e0a6‘; } .et-social-myspace a.icon:before { content: ‘\e0a1‘; } .et-social-dribbble a.icon:before { content: ‘\e09b‘; } .et-social-youtube a.icon:before { content: ‘\e0a3‘; } .et-social-vimeo a.icon:before { content: ‘\e09c‘; } .et-social-rss a.icon:before { content: ‘\e09e‘; } In the includes/social_icons.php file ..
Here’s some cool mysql scripts templates that you can use to update your database with the new domain name that’s in all those urls on your website. Reference website: https://wpbeaches.com/updating-wordpress-mysql-database-after-moving-to-a-new-url/ CAUTION: BACKUP DATABASE FIRST AND DON’T DO UNLESS YOU KNOW WHAT YOUR DOING. Before I get to the update scripts, from your website, confirm where ..
Are you looking to hide a featured image in a single post on WordPress? There are several ways to hide a featured image in a WordPress single post. Here are a few methods: Using a Plugin: One of the easiest ways is using a plugin like ‘Conditionally Display Featured Image’. This plugin allows you to ..
In WordPress Admin Dashboard, you can change in General Settings. If you are unable to do this and you have access to the back end, you can add the following to your wp-config.php define(‘WP_HOME’,’https://example.com’); define(‘WP_SITEURL’,’https://example.com’); For more information, click he..
Add the following code in your child theme style sheet. #main-header { box-shadow: 0 0px 0; -moz-box-shadow: 0 0px 0; -webkit-box-shadow: ..
Problem: When trying to send domain addressed email from WordPress website, it doesn’t work. Solution: Install the Mandrill plugin. It takes a bit of configuration, but it works and is fast. &nb..