Ning Developer Docs

Hi there. I need help to hide some links. On My Page (on other members pages) I want to remove the links: "Send message" and "Blog posts". Anyone know the code and where to insert it?


I don't have the feature "BLOG" activated - but the link "Blog posts" still shows on members "My page". I have hided the acount (My inbox, Send messages, Alerts and so on) - thereby trying to avoid members using the "email" /send private messages. But again: "Send message" shows on members "My page".

Thanks

Views: 8

Replies to This Discussion

Hi Mogens,

You can try the Advanced CSS tab and add this styling to remove the Send Message


dt.fn dd a.xg_sprite-message {
display: none;
}

Hope this helps--

LRon
Sympho Networks
Try this CSS in your advance tab:

/*hides send a message*/
.xg_sprite-message {
display:none;
}

/*hides block messages*/
.xg_sprite-message-block {
display:none;
}


you should remember that if you enabled "Allow members to change their My Page theme" the following CSS codes may not work for those members who change their "my page" theme. But here is another work around. Instead of putting the CSS in the advance tab, you rather place it in analytics box and wrap it with <style> tag.

Hope this helps.
-L4
Thanks both!! It works! Great!!
Now I only need to hide the Blog post function!
Morgens,

If the Blog post link is the first item on the list, you can try this:

.module_user_summary .xg_module_body .nobullets li:first-child {
display:none;
}

hope this helps--

LRon
Sympho Networks
YES!!! Thanks a lot!!!

:-)

Mogens

LRon said:
Morgens,

If the Blog post link is the first item on the list, you can try this:

.module_user_summary .xg_module_body .nobullets li:first-child {
display:none;
}

hope this helps--

LRon
Sympho Networks

RSS

© 2026   Created by Ning Developer Admin.   Powered by

Badges  |  Report an Issue  |  Terms of Service