Hi there!
I´ve attached an inage to show whay I mean.
This is a form that is meant to be completed by an anon user, who doesn´t have any perms at all (just for filling that cck form).
So why does the link "Notifications" appear?
How can I manage to eliminate it...?
Can I do it from the template?
Thanks for your help!!!

Rosamunda

CommentFileSizeAuthor
Untitled-1.png34.33 KBRosamunda

Comments

Rosamunda’s picture

It is appearing just in my case? Noby out there seems this as a little annoying bug?

MountainX’s picture

I see the outlined area appearing, but for users without permissions, the area is blank. So, if this is what you are talking about, it is simply annoying -- but it is not a problem that would let users without permissions take any actions. Am I correct?

Rosamunda’s picture

Yes, you are correct.
But I think that as the "wrapper" appears even in the edit node that anon users can fill, it is confusing. For registered users it is just annoying, yeah, but I don´t want to mess with anon users that will not now what that means...

ron collins’s picture

Version: 6.x-2.0-beta6 » 6.x-2.0

just to confirm, i'm seeing the same issue in 2.0.

gunzip’s picture

subscribing, same here

brisath’s picture

I would also like this to be removed, because it can be confusing to those without permission.

Subscribing.

fumbling’s picture

Subscribing. My problem may be the same one. While testing, I went to admin/messaging/notifications/content and checked the box in global settings beside the "thread" option. A "notifications" section appeared beside each comment box on nodes, which is correct. But when I unchecked that same setting for threads in global settings, that "notications" section, at least the heading, did not go away and still remains now. I've tried flushing caches, etc, but it remains.

fumbling’s picture

Update: I thought I would be able to fix my issue by switching the radio button selection to "Set up for each content type on Administer Content Types" on admin/messaging/notifications/content and then going to each content type and un-checking "Full node links. Subscription links will be displayed for full node pages," but that doesn't appear to have worked. Still looking...

anupom.gogoi’s picture

For my case, i have fixed the issue by changing the _notifications_content_add_disable_field function of notifications_content.module file. Following are the updated code:

/**
 * Add disable (skip notifications) field set
 */
function _notifications_content_add_disable_field(&$form) {
  // Add fieldset without affecting any other elements there
  $form['notifications']['#type'] = 'fieldset';
  $form['notifications']['#title'] = t('Notifications');
  $form['notifications']['#access'] = user_access('skip notifications');
  $form['notifications']['#collapsible'] = TRUE;  
  $form['notifications']['notifications_content_disable'] = array(
    '#type'          => 'checkbox',
    '#title'         => t('Do not send notifications for this update.'),
    '#default_value' => 0,
  );  
}

Also I have given "skip notifications" permission to only Authenticate user.