How to Remove DNS-prefetch from WordPr...
Improve website performance by removing DNS-prefetch from WordPress head when it̵...

WPCodeBox
401

This code snippet allows you to easily hide or remove the “Promoted” and “Featured” listing badges in MyListing, providing a cleaner display and more control over your website’s appearance.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
.level-promoted .ad-badge {
display: none;
}
.level-featured .ad-badge {
display: none;
}





