-1

check this out !(http://d3u3luhfiauvsc.cloudfront.net/hello.png)

I need to find the php/html file that shows the submenus on the screenshot under the blue tabs "personal","mentions","favourites".... (on the pic)

//This is how the html looks in the source code
<div class="item-list-tabs no-ajax" id="subnav" role="navigation">ev
<ul>
<li id="just-me-personal-li" class="current selected">
<li id="activity-mentions-personal-li">
<a id="activity-mentions" href="http://127.0.0.1/anonSocial2/members/gabriel_regalado/activity/mentions/">
</li>
<li id="activity-favs-personal-li">
<li id="activity-friends-personal-li">
<li id="activity-groups-personal-li">
<li id="activity-filter-select" class="last">
</ul>
</div>

I just want to find the php or html file that triggers it.

halfer
  • 19,824
  • 17
  • 99
  • 186
Gabriel ThaKid
  • 857
  • 3
  • 9
  • 19

1 Answers1

2

Frisco inherits lots of files from BP Default. Look in this file:

/members/single/profile.php

This function bp_get_options_nav(); returns that menu.

Slava Abakumov
  • 698
  • 6
  • 17
  • THANKS! I just noticed there is a php file for every tab. every tab has a php file, like activity.php or friends.php which contains this function thanks a lot you are the best – Gabriel ThaKid Jul 30 '13 at 21:28