Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • max power Friend
    #161136

    I am removing the avatars and I would like to have usernames in the comments linked to a video profile page for each user.

    I would like the username links to look like…
    /video/viewChannel?user_id=2105
    Where the id would change according to the user id.

    How should I go about doing this?

    khoand Friend
    #380198

    Hi,
    – Open <joomla url>componentscom_jacommentthemesdefaulthtmlcommentsitems.php file
    – Replace this code

    <?php if($item->strWebsite){ ?>
    <a href="<?php echo $item->strWebsite;?>" class="comment-user">
    <span class="comment-user"><?php echo $item->strUser; ?></span>
    </a>
    <?php
    }else{
    ?>
    <span class="comment-user"><?php echo $item->userid; ?></span>
    <?php } ?>

    to

    <a href="/video/viewChannel?user_id=<?php echo $item->userid;?>" class="comment-user">
    <span class="comment-user"><?php echo $item->strUser; ?></span>
    </a>

    max power Friend
    #380657

    Thanks, that worked.

    Is there something I could add to the code that doesnt have links to guests who post?

    khoand Friend
    #380758

    Hi,
    you replace previous code


    <a href="/video/viewChannel?user_id=<?php echo $item->userid;?>" class="comment-user">
    <span class="comment-user"><?php echo $item->strUser; ?></span>
    </a>

    to


    <?php if($item->userid != 0){ ?>
    <a href="/video/viewChannel?user_id=<?php echo $item->userid;?>" class="comment-user">
    <span class="comment-user"><?php echo $item->strUser; ?></span>
    </a>
    <?php
    }else{
    ?>
    <span class="comment-user"><?php echo $item->strUser; ?></span>
    <?php } ?>

    max power Friend
    #380879

    Thats it!

    Thank you

    bashirnoori1 Friend
    #440082

    hi khoand,
    Thank you for your help, but i need that link with avatar as well.
    because i have a recent comments module, there shows the picture of each profile (enabled avatar with fireboard kunena).
    also i want to add that link with each avatar.
    thanks

    bashirnoori.com

Viewing 6 posts - 1 through 6 (of 6 total)

This topic contains 6 replies, has 3 voices, and was last updated by  bashirnoori1 12 years, 2 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum