elggnoob

Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

Activity

  • elggnoob replied on the discussion topic Pages plugin: Sidebar question
    Thanks for the reply. I checked my "my_plugin" to see what code I changed for the "Pages" plugin. I did the following: 1. Hide the comment block in the plugin's sidebar.php. 2. Hide the tag block in the plugin's... view reply
  • elggnoob commented on the blog Elgg 6.2 release
    Can I upgrade directly from 6.1.2 to 6.2 or do I have to update to 6.1.5 first?
  • elggnoob added a new discussion topic Pages plugin: Sidebar question in the group Beginning Developers
    Hello, I have a question about the sidebar navigation of the "Pages" plugin. When I am on a page and that page has sub-pages, there is a list of those sub-pages in the sidebar on the right side of the page. As I just found out,...
    • Thanks for the reply.

      I checked my "my_plugin" to see what code I changed for the "Pages" plugin. I did the following:

      1. Hide the comment block in the plugin's sidebar.php.

      2. Hide the tag block in the plugin's sidebar.php.

      3. Hide the owner block in the cores' sidebar.php.

      4. Sort the list for the pages:menu_nav alphabetically with the code you provided me with:

      In "my_plugin"'s "elgg-plugin.php" there is:

      'events' => [
              'register' => [
                  'menu:pages_nav' => [
                      'Elgg\Pages\Menus\PagesNav::register' => ['unregister' => true],
                      '\MyPlugin\Pages\Menus\PagesNav::register' => ['priority' => 800],
                                      ],
                              ],
                      ],

      And in the new "PagesNav.php" this function is added to the "$next_level_guids = [$top->guid];" part:

      'batch' => true,
      'sort_by' => [
      'property_type' => 'metadata',
      'property' => 'title',
      'direction' => 'ASC',
      ],

      For testing purposes, I just deactivated this, and as a result I got the standard sorting, but it was also limited to 10.

      I don't know where that limit of 10 comes from. How could I investigate this?

      For reference, my sidebar looks like this (there are more wikis after the letter "I"):

    • Sounds like a bug.

      Just only one guess, it comes from Site settings - "Default number of items per page".
      If you have it set to 10, then that's it.

      But there're no limits in 'Pages' plugin, so it's a bug.

  • Hello, [I hope that this is the correct group for my question.] I have a CSS problem when I add images to posts with the CKEditor, e.g. in the "Pages" plugin. When I choose "Side image", the div doesn't wrap around...
  • elggnoob replied on the discussion topic Roles and Media Plugin
    I agree with you. Especially about the photo and video sharing capabilities. That's the number one feedback I get on my site. I have modified "Tinypics" to have some kind of Instagram-style photo sharing platform, but it's not the... view reply
  • elggnoob joined the group General Discussion
  • elggnoob replied on the discussion topic Someone for upgrading the recaptcha plugin
    For informational purposes, I want to mention that I got Nikolai's "hCaptcha" plugin for Elgg 6.xx and I received ZERO spam registrations on my page ever since I activated his plugin. Before that, I would receive around 1 spam... view reply
  • elggnoob commented on the blog Elgg 6.1.5 release
    Thanks for the reply. If I installed Elgg without Composer, is it possible to change that later? I mean, if I would install Composer now, after Elgg is already installed, is that an option, or would I have to reinstall everything from scratch?