DIVI Remove Featured Image | Extra Remove Featured Image

It’s no secret Elegant Themes DIVI and Elegant Themes Extra are two of the best and most powerful and flexible WordPress themes available. That said no wordpress theme can be perfect for every situation and little tweaks and adjustments need to be made. The problem is the fix or adjustment  isnt always always obvious or built in the the Elegant Themes product. This page addresses two these items. By default both DIVI  and Extra place the featured image at the top of posts or in the case of Extra at the top of projects. I don like this.

Elegant themes DIVI Remove Featured Image from Posts

Removing featured images from DIVI posts is easy. In your dashboard select DIVI –> Theme Options –> General Tab –> Toggle the “Grab First Post Image” slider and the images will no longer appear on your posts. See Below

DIVI Grab First Post Image - Remove Featured Image- Hide Featured image in DIVI and EXTRA themes

Disable DIVI Grab First Post Image to Remove Featured Image

Elegant Themes Remove Featured Image from Projects

Unfortunately Elegant Themes has omitted the option to disable featured images from appearing at the top of EXTRA projects. To change this setting is still very easy with a little bit of custom CSS.

Elegant Themes Extra Remove Featured Image Projects

Elegant Themes Extra Hide Featured Image on Projects

In your dashboard select EXTRA –> Theme Options –> General Tab –> Scroll to the bottom and past the following CSS in the custom CSS field and save the change. The featured image will no longer be displayed at the top of the EXTRA projects.

.single-project .post-thumbnail{
display: none;
}

CHANGE DIVI BLOG READ MORE TEXT

CHANGE DIVI BLOG READ MORE TEXT

CHANGE DIVI BLOG READ MORE TEXT

I noticed a lot of readers of my blogs are not computer savvy and do not realize the “read more” hyperlink would bring them to the full content. A quick google search revealed the easist fix would be to change the wording to say “Read Full Post”. Below is the code to do just that. Navigate to Divi>Theme Options>Integration and add code to the “body ” field

<script type="text/javascript">
(function($) {
$(document).ready(function() {
var newVal = 'View Full Post';
$('.more-link').html( newVal );
});
})(jQuery);
</script>


Originally appeared here

CHANGE DIVI BLOG READ MORE TEXT


REMOVE ELEGANT THEMES BRANDING

REMOVE ELEGANT THEMES BRANDING

REMOVE ELEGANT THEMES BRANDING

REMOVE ELEGANT THEMES BRANDING – Many Elegant Themes DIVI users complain about the inability to remove the Elegant Themes branding from the footer in DIVI. I stumbled across the code below. Simply copy and paste it in your DIVI>Theme Options>Integration. Click “Enable Body Code” and paste  the code in the “Body” text field. It’s free and Easy.

<script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#footer-info").text(' '); jQuery('<p id="footer-info">Copyright &copy;2016 <a href="http://yourcoolsite.com" >My Awesome Site</a>. All Rights Reserved.</p>').insertAfter("#footer-info"); }); </script>

REMOVE ELEGANT THEMES BRANDING