Right now Beautytips Field Help (BFH) is appearing on all forms including those in the View interface. This is partially breaking the View interface. There needs to be a way to limit which forms BFH is applied to.

CommentFileSizeAuthor
#2 remove_views_path-2090331.patch754 bytescapellic

Comments

capellic’s picture

+1

I came to this issue queue to report this problem, found out @okeedoak already reported.

capellic’s picture

Issue summary: View changes
Status: Active » Needs review
StatusFileSize
new754 bytes

Patch to exclude the views editing pages.

capellic’s picture

Discovered that the 'Manage Fields' page for Content Types was also a problem: When selecting an existing field, neither the field label nor the widget would be selected. I added the admin/structure/types/manage path.

capellic’s picture

Continuing on from comment #3, the Manage Fields page for Profile 2 is also affected. Adding this path to the exclusion array will solve the problem:

admin/structure/profiles/manage

Now my exclusion array looks like this:

$excluded_paths = array(
  'admin/structure/views/view',
  'admin/structure/types/manage',
  'admin/structure/taxonomy',
  'admin/structure/profiles/manage',
);