adrian

About me:
Location:
Website: http://
Email:

Send private message

You must be logged in to send a private message.

Group membership

Activity

  • adrian replied on the discussion topic log out
    i did it with a space <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?> to <?php echo elgg_view('output/url', array('href' =>... view reply
  • adrian replied on the discussion topic log out
    if i change this <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?> to this <?php echo elgg_view('output/url', array('href' =>... view reply
  • adrian added a new discussion topic log out in the group Elgg Technical Support
    hi i want to delete in the topbar the text "log out". i want only use the icon. but if i delete the text it shows me tokens. how could i delete the text without showing me tokens?
    • Which text in which file you wanted to delete? Tell more info what exactly did you delete...

    • if i change this

      <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?>

      to this

      <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'is_action' => TRUE)); ?>

      it shows me the logout link by the logout icon

    • i did it with a space

      <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo('logout'), 'is_action' => TRUE)); ?>

      to

      <?php echo elgg_view('output/url', array('href' => "{$vars['url']}action/logout", 'text' => elgg_echo(' '), 'is_action' => TRUE)); ?>

  • adrian replied on the discussion topic search function
    Maybe this would only be realizable with sql command? If so, how would the sql command look? view reply
  • adrian replied on the discussion topic search function
    I tried this: add_submenu_item(elgg_echo('group1'), $CONFIG->wwwroot . "search/?tag=". urlencode($tag) . "&subtype=groupforumtopic" . "&group_guid=5" . "&tagtype=" . urlencode($md_type) . "&owner_guid=" .... view reply
  • adrian replied on the discussion topic search function
    How should I change this code in search index if i want that only search results (topicposts) in group1 will be shown? add_submenu_item(elgg_echo('group1'), $CONFIG->wwwroot . "search/?tag=". urlencode($tag) ."&subtype=" .... view reply
  • adrian has updated their profile
  • adrian is now a friend with Lovegin John
  • adrian added a new discussion topic search function in the group Elgg Technical Support
    Have anybody a solution for a search function where you can only search in the group you choose?
    • How should I change this code in search index if i want that only search results (topicposts) in group1 will be shown?

      add_submenu_item(elgg_echo('group1'), $CONFIG->wwwroot . "search/?tag=". urlencode($tag) ."&subtype=" . $object_subtype . "&object=". urlencode($object_type) ."&tagtype=" . urlencode($md_type) . "&owner_guid=" . urlencode($owner_guid).$tagSearchString);

    • I tried this:

      add_submenu_item(elgg_echo('group1'), $CONFIG->wwwroot . "search/?tag=". urlencode($tag) . "&subtype=groupforumtopic" . "&group_guid=5" . "&tagtype=" . urlencode($md_type) . "&owner_guid=" . urlencode($owner_guid).$tagSearchString);

      but it shows me all topicposts. What should I change in this code that it displays me only the topicposts of group1? I don't know if it's the right way with the group_guid.

    • Maybe this would only be realizable with sql command? If so, how would the sql command look?

  • adrian replied on the discussion topic elgg 1.7b and event_calendar, delete events token error
    Yes, if plugins would be updated now it would be helpful for me, too. I'm the same opinion like you. We don't know how long to wait for the final version. view reply
  • adrian replied on the discussion topic elgg 1.7b and event_calendar, delete events token error
    ok thanks. view reply
  • adrian added a new discussion topic elgg 1.7b and event_calendar, delete events token error in the group Elgg Technical Support
    Cant't delete events from event_calendar. A “Form is missing __token or __ts fields” error occurs when I want to delete events from event_calendar. Has anyone a solution for it?
    • It would be helpful if plugins could be updated now, since the code is out.  Many of us have been gnawing our elbows off, waiting for even the 1.7 beta.  It has been forever!  So, to have to wait forever for plugins to be released based on 1.7 stable will prolong a lot of projects timelines even more!  Please, plugin developers, at least get your plugins up to 1.7 beta!  That's getting them pretty far!  And then if their are minor tweaks after the stable, it'll be okay!

    • Yes, if plugins would be updated now it would be helpful for me, too. I'm the same opinion like you. We don't know how long to wait for the final version.

  • adrian joined the group Feedback and Planning
  • adrian replied on the discussion topic groups posts anonymous
    Hi Brett, Do you have a solution for this? Or how the code should be? It doesn't work with the group_guid view reply
  • adrian added a new discussion topic search function topicposts in the group Elgg Technical Support
    Is there a search function where you can only search topicposts?