Skip to content

Instantly share code, notes, and snippets.

@dotrinh-DM
Created June 17, 2021 06:54
Show Gist options
  • Save dotrinh-DM/62103f098ff68c7c0479fb2276cabe76 to your computer and use it in GitHub Desktop.
Save dotrinh-DM/62103f098ff68c7c0479fb2276cabe76 to your computer and use it in GitHub Desktop.
when "Screen Option" does not work, use this snippet!
jQuery(document).ready(function ($) {
$("#contextual-help-link").click(function () {
$("#contextual-help-wrap").css("cssText", "display: block !important;");
});
$("#show-settings-link").click(function () {
$("#screen-options-wrap").css("cssText", "display: block !important;");
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment