Hi, I want to use delta blocks to be able to place the tabs in the menu region, but I'm getting a duplication of the tabs now... there doesn't seem to be a way to toggle the tabs off like there is for other elements. Can you advise how I would get rid of the tabs so that I can use the Delta Block for the tabs?

Comments

tchopshop’s picture

Status: Active » Closed (works as designed)

Never mind! Now I see where it is!

pjcdawkins’s picture

Status: Closed (works as designed) » Active

tchopshop, would you mind posting the solution?

hixster’s picture

yep, would be good to know where these setting are - can't see how to hide tabs or page titles? Do these need to be pulled out of the page template or does delta handle this?

hixster’s picture

bump - anyone?

hixster’s picture

Can anyone help?

hixster’s picture

still looking for an answer to this, have scoured all the delta admin pages but cant find a solution..

mrpauldriver’s picture

You need to disable Tabs in the Omega setting pages - found under the 'Toggle advanced elements' menu.

You may also need to repeat this for any Delta templates.

hixster’s picture

Status: Active » Fixed

Thanks Paul! Don't know how I missed those settings now :-)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

thirdender’s picture

This option was removed in Omega 4.x. Is there a good, simple solution for Omega 4.x users? Right now I'm using hook_preprocess_page(&$variables)… Is there a better solution?

  function THEME_preprocess_page(&$variables) {
    hide($variables['tabs']['#primary']);
    $variables['breadcrumb'] = '';
  }