How to Show or Hide Content Based on U...
Control user experience on your WordPress site by showing or hiding specific content ...

WPCodeBox
1269

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%;
}





