We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Remove ' latest' in Friends | Forum

W.SNEIJDER
W.SNEIJDER Oct 27 '13
hi, how to remove the latest bottom in " Friends" ?

Thanks for your help

Sorry for my bad English
Attachments:
  dfgfdgdfgdf.jpg (128.34Kb)
W.SNEIJDER
W.SNEIJDER Oct 27 '13
or ,then see the friends who have recent activity and not all members
W.SNEIJDER
W.SNEIJDER Oct 29 '13
??
Daisy Team
Daisy Nov 1 '13
The page you've shown on the screenshot is the latest users list, not the friends list. You can hide this tab adding the following CSS code via Admin Area > Appearance > CSS tab:

._latest {
display:none;
}

Then simply create a new menu item with the URL to the, let's say, Online list and replace the standard Members item with the newly created one.
W.SNEIJDER
W.SNEIJDER Nov 1 '13
By modifying the css, the writing font changesand the site becomes slow.
I just created a new menu, and then I put a URL inside www.mysite.com / firends instead of user.
Abbey
Abbey Mar 21 '14
This doesn't help me much, works for latest but not anything else.
Also what about removing the voting on links and number of votes?
Daisy Team
Daisy Mar 27 '14

Quote from Abbey This doesn't help me much, works for latest but not anything else.

Please specify what else you want to remove.


Quote from Abbey Also what about removing the voting on links and number of votes?

You can hide it using the CSS:

.ow_ivc_voteupdown {

   display: none;

}

.ow_ivc_content {

    margin-left: 0;

}

Or remove the vote component directly via the page template:

Go to /ow_plugins/links/views/controllers/list_index.html and comment the following strings:

<div class="ow_ivc_voteupdown">
                            <div class="ow_highbox" style="width: 55px;">
                        {if $mode != 'sum'}

                            <div class="ow_icon_control ow_ic_up_arrow" style="display: block; cursor: pointer; margin-bottom: 2px; margin-top: 2px;" onclick="vote({$id}, 'UP')">
                                <span id="lvru-{$id}" style="color: #00AA00; font-weight: bold;">{if isset($link.up)}{$link.up}{else}0{/if}</span>
                            </div>

                            <div class="ow_icon_control ow_ic_down_arrow" style="display: block; cursor: pointer; padding-bottom: 3px;" onclick="vote({$id}, 'DOWN')">
                                <span id="lvrd-{$id}" style="color: #FF6666; font-weight: bold;">{if isset($link.down)}{$link.down}{else}0{/if}</span>
                            </div>

                        {else}
                        <div class="clearfix">
                                <div style="float: left; width: 16px; height: 35px;">
                                    <div class="ow_icon_control ow_ic_up_arrow" style="min-width: 16px; min-height: 16px; cursor: pointer; margin-bottom: 3px; display: block; padding: 0px;" onclick="vote({$id}, 'UP')"></div>
                                    <div class="ow_icon_control ow_ic_down_arrow" style="cursor: pointer; min-width: 16px; min-height: 16px; display: block; padding: 0px;" onclick="vote({$id}, 'DOWN')"></div>
                                </div>
                                <div style="float: left; padding: 7px 5px 0px 13px;" class="ow_txt_value" id="lvrt-{$id}">
                                    {if isset($link.voteTotal)}{$link.voteTotal}{else}0{/if}
                                </div>
                        </div>

                        {/if}
                        </div>
                            <div id="vote-lbl-{$id}-container" class="ow_tiny" style=" height: 20px; display:{if $isAuthenticated && isset($userVotes[$id])}  block {else} none {/if}" >
                                <span id="vote-lbl-{$id}" class="ow_lbutton {if isset($userVotes[$id])} {if $userVotes[$id]->vote < 0} ow_red {else} ow_green {/if} {/if}">{if isset($userVotes[$id])}{$userVotes[$id]->vote}{else}0{/if}</span>
                                <span id="vote-cancel-lbl-{$id}" class="ow_lbutton" onclick="vote({$id}, 'CANCEL')">{text key='links+cancel_vote'}</span>
                            </div>
                        </div>


However, be advised that in this case, the changes will be erased if you update the Links plugin.

The Forum post is edited by Daisy Mar 27 '14
ben
ben Jan 15 '16

Quote from Daisy The page you've shown on the screenshot is the latest users list, not the friends list. You can hide this tab adding the following CSS code via Admin Area > Appearance > CSS tab:

._latest {
display:none;
}

Then simply create a new menu item with the URL to the, let's say, Online list and replace the standard Members item with the newly created one.

thankx daisy