Cleaning up the Admin Bar? Please consolidate your menu items.

Posted in: Newspaper
Post count: 184

Hello.

So with the new update, there is a new item on the WP admin bar more cramped.
You have these items currently:
“Theme Panel”
“Theme Support” — which I don’t get why it should be placed in a prominent position.
“Edit with TD Composer / Cloud Template editor”
“Live CSS”

What you can do:
Consolidate them under one head menu and the rest are under it. Name it as “TagDiv” or something.

We have other admin menu items too so you guys taking 4 menu items is really annoying.
Please fix this.

Post count: 35449

Hi mrsky28,

The new version is a concept that helps you to edit entire website using cloud templates, these can be now assign individual, global and can be edited from frontend, without been needed to go in theme panel and make the changes there. Also this was the best way to make these elements to be visible and intuitive for all users.

I noted your suggestion on our list, maybe our developers will find a better way to display these elements.

Thank you for your understanding!

Post count: 72

I’ve tried turning these off with some code I wrote.

Here is the code that worked for me.

You can add other nodes to the list if you have other plugins crowding your admin bar on the front end.

Best,
Kim

function wps_admin_bar() {
global $wp_admin_bar;
$wp_admin_bar->remove_node( 'tdc_edit' );
$wp_admin_bar->remove_node( 'tdc_page_mobile_template' );
$wp_admin_bar->remove_node( 'tdc_create_mobile_page' );
$wp_admin_bar->remove_node( 'tdb_template_load' );
}
add_action( 'wp_before_admin_bar_render', 'wps_admin_bar', 999 )

  • This reply was modified 5 years by imkimc.
Post count: 35449

Thank you for sharing with us!
Have a nice weekend!

Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.