Jump to content

Remove Names From A Forum


ADT

Recommended Posts

We are in the process of creating a Health & Wellbeing site for students to access information/links about mental, sexual, general health etc!!

On art of the site a Pastoral member whats a forum where a few "good" kids will be allowed to post reviews of apps,sites, books etc but i want to hide their names.

No doubt there will be a bit of HTML coding to do this????

@Graham Quince

Link to comment
Share on other sites

I don't know.  Do you think it's possible? :)

With any styling in FrogLearn, all you need to do is:

  • right-click on the element and choose Inspect
  • In the developer console, look for the class of the item and make a note of it
  • Move up through the code tree until you see the widget's data-content-uuid.  As you do this, the widget will highlight in the browser too
  • Then use this following HTML:
  • <style> 
        div[data-content-uuid="58A25F97200285BE6A384F3F2170F106492F308C1F033867"] .latest,
        div[data-content-uuid="58A25F97200285BE6A384F3F2170F106492F308C1F033867"] .post .title
        {
            visibility: hidden !important;
        }
    </style>

     

Link to comment
Share on other sites

1 hour ago, Graham Quince said:

I don't know.  Do you think it's possible? :)

With any styling in FrogLearn, all you need to do is:

  • right-click on the element and choose Inspect
  • In the developer console, look for the class of the item and make a note of it
  • Move up through the code tree until you see the widget's data-content-uuid.  As you do this, the widget will highlight in the browser too
  • Then use this following HTML:
  • 
    <style> 
        div[data-content-uuid="58A25F97200285BE6A384F3F2170F106492F308C1F033867"] .latest,
        div[data-content-uuid="58A25F97200285BE6A384F3F2170F106492F308C1F033867"] .post .title
        {
            visibility: hidden !important;
        }
    </style>

     

Why would i want to write my own code when i can get you to do it?? :P

  • Haha 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...