For those who is using Virtue Theme – feature template, you might encounter broken header image if you didn’t specify the featured image. Some might said if you do not want to set featured image then do not use feature template, but other template do not allow me to customize the sidebar. 

To disable the broken header image in Virtue theme feature template, follow the steps below:-
			
				
				
Advertisements
				
				
				
				
											
			
- Open the file virtue/page-feature-sidebar.php or virtue/page-feature.php
 - Look for line 56
<img src="<?php echo esc_url($image); ?>" alt="<?php the_title(); ?>" />
Change to:-
<?php if($image != '') : ?><img src="<?php echo esc_url($image); ?>" alt="<?php the_title(); ?>" /><?php endif; ?>
 - Once done, the broken image image will not be shown anymore
 
Related posts:
Woocommerce: Order Status Explanation
ContactForm7 - How to prevent user from double click on the submit button?
How to hide admin bar from non admin in WordPress
How to add native menu support in your WordPress theme?
WordPress: How to remove meta generator tag?
How to block customer from accessing WP Admin in WordPress
WordPress: How to open rss links in new window?
How to change shop title in Woocommerce
						Share this with your friends:-