Send private message

You must be logged in to send a private message.

Friends

No friends yet.

Group membership

Activity

  • ezisLV replied on the discussion topic Redesigning www.elgg.org
    just a suggestion but you might wan't to detain topbar elgg inner inside the same max-width you use for main menu  just feels wierd on a large screen btw like the new look and feel  view reply
  • ezisLV joined the group Feedback and Planning
  • ezisLV replied on the discussion topic Group icon without width and height set
    you where right many thanks here's the fix  in owner_block elgg_view_entity_icon i added $vars plus a little css $header = elgg_view_entity_icon($owner, 'large', $vars = array('img_class' => 'new',... view reply
  • ezisLV added a new discussion topic Group icon without width and height set in the group Theme Development
    is there any reasonable way to get group icon inside of owner_block without fixed width, height ? i have been messing with groups_set_icon_url for hours now and can't even add class for the img thanks for any help
    • I think the only easy way is to override the icon/group view.
      You could also filter view_vars for output/img but I am not sure if you can determine with certainty where the view is rendered (you could check owner block context, I believe it is set somewhere).

    • you where right many thanks

      here's the fix 

      in owner_block elgg_view_entity_icon i added $vars plus a little css

      $header = elgg_view_entity_icon($owner, 'large', $vars = array('img_class' => 'new', 'width' => '','height' => ''));
      
      .elgg-owner-block img.new {
          width: 100%;
          height: auto;
      }​
  • ezisLV replied on the discussion topic active user based on owner
    ok so i was wrong of being wrong  code works but only inside of profile  but why ? view reply
  • ezisLV added a new discussion topic active user based on owner in the group Theme Development
    hove am i doing this wrong trying to show if user is online from owner_block have been playing with this for hours now and still can't get it to show result for other users  p.s. sorry for my bad english $user_online =...
  • ezisLV replied on the discussion topic edit profile menu ?
    user settings and user statistics still will not show up profile and will create duplicate if added with context  i think it might be better to just remove page menu and create new menu with needed items in context  depending on what... view reply
  • ezisLV replied on the discussion topic edit profile menu ?
    Menu is "page"  i partialy got it where i wan't it by editing plugins coresponding to it's content like private profiles with "contexts" function private_profiles_usersettings_page() { if... view reply