Michael

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

Activity

  • Michael replied on the discussion topic How can I forbid user to delete the comments?
    Hello I have a group, and in the group there is a page. By the page are many comments. And this comments are all deleteable from the user from the group, not only from the owner of the page. I need, that all comments in a group (or in... view reply
  • Michael added a new discussion topic How can I forbid user to delete the comments? in the group General Discussion
    Hello community, I have elgg 1.8 and my configuration is, that all user in a group can delete all other comments. How can I set elgg, that only the own comments can deleted or no one (until the admin) can delete a comment. Or exist a plugin...
    • Discussions (discussion replies) or comments?

      There's a difference between comments (e.g. on blogs or other type of content) and group discussions / discussion replies. In case of comments the user who owns the entity that is commented on seems to be able to delete all comments made on it (but only the user who owns the entity). Within group discussions a user can only delete own replies.

      For group discussions the community_groups plugin (https://github.com/Elgg/community_groups) used here on the community site contains the functionality to allow for editing / deleting of group discussion replies for only 30 minutes after saving. Within this plugin this feature is limited to group discussions only but I think it might be possible to remove this limitation and then have the same functionality for normal comments made on all other type of content, too.

      You wouldn't have to use the whole community_groups plugin to add the functionality for limiting editing/deletion of replies/comments either. The necessary code is within start.php. The code consists of the registering of the plugin hook handlers (with callback function "community_groups_limit_editing") in the init function and the functions "community_groups_limit_editing()", "community_groups_can_edit()" and "community_groups_can_delete()".

    • Hello

      I have a group, and in the group there is a page.

      By the page are many comments.

      And this comments are all deleteable from the user from the group, not only from the owner of the page.

      I need, that all comments in a group (or in the whole elgg site) only deleteable from the admin of the elgg site.

      Is this possible?

      Thank's  Michael

    • Are you referring to pages created with the bundled Pages plugin? It seems that users could delete comments of others if they had write access to these pages on Elgg 1.8. On Elgg 1.9 onwards this has been fixed. So, either upgrade your site to a more recent version of Elgg or it might help to set write access of the pages to private (though this contradicts the purpose of the pages somehow).

  • Michael added a new discussion topic reset password mail: One with from and one without from in the group Elgg Technical Support
    Greetings community, I have followed phenomenon with the reset password function: Has the mail receiver a microsoft exchange server, the mail looks like correct: --------------------------------------------------- From:...
  • Michael added a new discussion topic Wrong E-Mail Header by reset the password in the group Elgg Technical Support
    Hello community, I have installed the new 1.12.4 version. If let a user send a new password, the received mail has no "From". Instead the mail parameter are in the mail body: mail body...
  • Michael replied on the discussion topic Change color from the text "Edit" on pages
    Thank you, works fine! view reply
  • Michael replied on the discussion topic Change color from the text "Edit" on pages
    Create a plugin where you can keep your customizations. Add the class elgg-menu-item-edit to the css file in that plugin. But I see the class "elgg-menu-item-edit" in the HTML file in my browser and the text-color is grey. So is... view reply
  • Michael added a new discussion topic Change color from the text "Edit" on pages in the group Elgg Technical Support
    Greeting, I use elgg 1.8 and the standard theme. I use the addin "Pages" and, if I want to edit a page, I must click to the "Edit" Link. Now the Edit link have a small contrast, so I want to change the text-color to...
    • Create a plugin where you can keep your customizations. Add the class elgg-menu-item-edit to the css file in that plugin.

      But I see the class "elgg-menu-item-edit" in the HTML file in my browser and the text-color is grey.

      So is this class "elgg-menu-item-edit" must be defined somewhere, right?

    • That piece of HTML is generated when you register menu items. That you can see a class in your HTML does not mean it's in your stylesheet.

      The menu item you want to style has the same color as a lot of other menu items and the color is defined in,

      .elgg-menu-entity > li > a, .elgg-menu-annotation > li > a {
          color: #aaa;
      }

      But if you want to target only a specific menu item, you can use,

      .elgg-menu-entity > li.elgg-menu-item-edit > a {
          color: blue;
      }

  • Michael replied on the discussion topic additional tab "talk" on the normal "pages"?
    Hello, where do I add the code? Regards  Michael view reply