How to move tags to the bottom?

Does anybody know how to move .elgg-tags to the bottom of the post?

  • OK, I found how to do this on summary pages.

    Go to views/default/object/elements/summary.php and move echo $tags; to the bottom of the page.

    Still can't find how to do this in full.php

    Anyone?

  • Hey @Anarcorder, did you find out how to do that? Would love to know ;)

    Thanks!

  • @sauko Here's an example for Blog post (Elgg 1.9.5).

    mod\your_cool_theme\views\default\object\blog.php (edited):

    if ($full) {

        $body = elgg_view('output/longtext', array(
            'value' => $blog->description,
            'class' => 'blog-post',
        ));
        
        $tags = elgg_extract('tags', $vars, '');
        if ($tags === '') {
        $tags = elgg_view('output/tags', array('tags' => $blog->tags));
        }

        $params = array(
            'entity' => $blog,
            'title' => false,
            'metadata' => $metadata,
            'subtitle' => $subtitle,
        );
        $params = $params + $vars;
        $summary = elgg_view('object/elements/my_summary', $params);

        echo elgg_view('object/elements/full', array(
            'summary' => $summary,
            'icon' => $owner_icon,
            'body' => $body . $tags,
        ));

    }

    Full edited file

     

    mod\your_cool_theme\views\default\object\elements\my_summary.php

    Edited

  • @rivervanrain no luck. I'm using 1.8 and darkgrey theme. Cannot find those views.. But ok, I'll look further later... When I find out I'll post.

    Thanks!