Skip to content

Instantly share code, notes, and snippets.

@benzkji
Last active May 11, 2018 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save benzkji/06f03330c04b57be9f7c2544d765b854 to your computer and use it in GitHub Desktop.
Save benzkji/06f03330c04b57be9f7c2544d765b854 to your computer and use it in GitHub Desktop.
remove top right "create" button from django cms toolbar
from cms.toolbar_pool import toolbar_pool
from cms.cms_toolbars import PlaceholderToolbar
toolbar_pool.unregister(PlaceholderToolbar)
@toolbar_pool.register
class PlaceholderToolbarNoWizard(PlaceholderToolbar):
def add_wizard_button(self):
pass
OR
.cms-toolbar-item.cms-toolbar-item-buttons .cms-btn[data-rel="modal"] {
display: none;
}
@benzkji
Copy link
Author

benzkji commented Aug 16, 2016

thx @rouxcode for the CSS workaround!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment