How to Remove the Promote Icon from My...
Learn how to remove the promote icon from MyListing cards. This guide provides a simp...

WPCodeBox
439
This MyListing code snippet helps website owners hide the “Sign In” option on the Add Listing Page, reducing user confusion caused by duplicate sign-in prompts in the header/navigation and submit form.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
.job_listing_packages .form-section-wrapper .form-section .fieldset-login_required a.button-5:first-child {
display: none;
}
.job_listing_packages .form-section-wrapper .form-section .fieldset-login_required p span {
display: none;
}
.job_listing_packages .form-section-wrapper .form-section .fieldset-login_required p:first-child {
display: none;
}
#job_package_selection .title-style-1 i {
margin-left: 40% !important;
}
.job_listing_packages .form-section-wrapper .form-section .fieldset-login_required p a {
margin-left: 27%;
}





