How to Get a List of All Loaded Shortc...
This WordPress snippet helps you easily list all loaded shortcodes. Run it in manual ...

WPCodeBox
363

This code snippet helps MyListing website owners clean up their submit form by hiding the account section, offering a cleaner user experience.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
/* ML - HIDE ACCOUNT SECTION ON MYLISTING SUBMIT FORM */
body:not(.logged-in) form.c27-submit-listing-form #form-section-auth {
display: none;
}
/* ML- HIDE THE SIDE NAVIGATION ITEM FOR THE ACCOUNT SECTION
li#form-section-auth-nav {
display: none;
}





