Former Member
inherit
guest@proboards.com
222576
0
Nov 25, 2024 20:43:18 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Apr 19, 2016 4:18:13 GMT -8
Hi Quick question. i have this in a menu drop down under my mp and the red one doesn't work, it goes to their summary rather than their followers. <option value="/user/$[user.id]/following">Who they follow</option> <option value="/user/$[user.id]/followers">Who follows them</option>What am i missing ? i cant seem to figure it out.
|
|
Former Member
inherit
guest@proboards.com
195316
0
Nov 25, 2024 20:43:18 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Apr 19, 2016 6:51:33 GMT -8
If want it as a link you could try
<a href="$[view_followers_link.href]">Who follows them</a>
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 25, 2024 20:43:18 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Apr 19, 2016 7:01:33 GMT -8
If want it as a link you could try <a href="$[view_followers_link.href]">Who follows them</a> thanks for the reply steve. im wanting in here just under the 'who they follow' <form> <select onChange="location=this.options[this.selectedIndex].value;" style="background-color:#ffffff;font-size:11px;color:#000000;"> <option value="..">Stuff</option> <option value="$[user.pm_href]">Message this member</option> <option value="/user/$[user.id]/activity">This members activity</option> <option value="/user/$[user.id]/following">Who they follow</option> <option value="http://goldenbeatz.uk/search">Full site search</option> <option value="http://goldenbeatz.uk/page/thread-booster">Your Thread booster</option> <option value="http://goldenbeatz.uk/posts/recent">Sites newest posts</option> </select> </form>
|
|
inherit
58740
0
Aug 20, 2024 7:29:21 GMT -8
®i©hie
I'm not very active here anymore thanks to my full-time job. - 12/27/23
14,036
September 2005
soe
|
Post by ®i©hie on Apr 19, 2016 9:10:05 GMT -8
Hi @joecool111 ,
1st of all you don't need the form tags, secondly here ya go:
<select onChange="location.href=this.options[this.selectedIndex].value;" style="background-color:#ffffff;font-size:11px;color:#000000;">
<option value="/">Stuff</option>
<option value="$[user.pm_href]">Message $[user.name]</option>
<option value="/user/$[user.id]/activity">$[user.name]'s activity</option>
<option value="/user/$[user.id]/following">Who $[user.name] follows</option>
<option value="/members?user=$[user.id]&view=followers">Who follows $[user.name]</option>
<option value="/search">Full site search</option>
<option value="/page/thread-booster">Your Thread booster</option>
<option value="/posts/recent">Sites newest posts</option>
</select>
|
|
Former Member
inherit
guest@proboards.com
222576
0
Nov 25, 2024 20:43:18 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Apr 19, 2016 11:16:06 GMT -8
®i©hie thank you you've made it do the names aswell, i'll have to learn that one thank you all @xsteveul
|
|