Can you give me access to certain admin-only functions?

Avatar
  • updated
  • Answered
For example, I'd like to know the correct scripts/functions to remove and modify:

  1. Forums module.
  2. Remove "forum" text in tabs and site settings. It's not used as a forum.
  3. Edit "Subscribe" module text.
  4. To be able to enter Profile, not only Page ID for Google+ Follow module.
For forums module, I believe the correct script is:
#m_forums {display: none;}
and

#m_path {display: none;}

But correct me if I'm wrong.

How would you rate the customer service you received?

Satisfaction mark by Mike Kuplevatsky 9 years ago

Got it, I will use a custom script, then. Thanks for providing me with the module scripts!

Add a comment about quality of support you received (optional):

Pinned replies
Avatar
Vladimir Mullagaliyev co-founder
  • Answer
  • Answered
Hello Mike,
We cannot provide more access than you have as a project admin.
You can customize modules with their options or use Javascript/CSS for 1,2,3.
4. Our modul accept Page ID only. But you can write your own module. Use Custom Script. Copy HTML from our module and change it if you know how to use Google+ Follow module with Profile.

Next, For your main page you have a code:
<div id="module_924593" class="module module-forums">
So, if you need to change CSS you can call this object by ID
#module_924593 {display: none;}
Or by class
.module-forums {display: none;}
Avatar
Vladimir Mullagaliyev co-founder
  • Answer
  • Answered
Hello Mike,
We cannot provide more access than you have as a project admin.
You can customize modules with their options or use Javascript/CSS for 1,2,3.
4. Our modul accept Page ID only. But you can write your own module. Use Custom Script. Copy HTML from our module and change it if you know how to use Google+ Follow module with Profile.

Next, For your main page you have a code:
<div id="module_924593" class="module module-forums">
So, if you need to change CSS you can call this object by ID
#module_924593 {display: none;}
Or by class
.module-forums {display: none;}
Avatar
Mike Kuplevatsky
Quote from Vladimir Mullagaliyev
Hello Mike,
We cannot provide more access than you have as a project admin.
You can customize modules with their options or use Javascript/CSS for 1,2,3.
4. Our modul accept Page ID only. But you can write your own module. Use Custom Script. Copy HTML from our module and change it if you know how to use Google+ Follow module with Profile.

Next, For your main page you have a code:
<div id="module_924593" class="module module-forums">
So, if you need to change CSS you can call this object by ID
#module_924593 {display: none;}
Or by class
.module-forums {display: none;}
Thanks for the clarifications, Vladimir! I appreciate it. Can you please remove the "forums" text in the tab, where SEO will find it? For example "Knowledge Portal forum / Mike Kuplevatsky" should be "Knowledge Portal | Mike Kuplevatsky. Thanks!