Current status of the Ning Platform is always available on the Ning Status Blog.

NC for Hire

Hi,

I answered a question on creators which inspired me to post this small tip on how to Customize textbox on user profiles (Overwrite user own css code too)

 

Requirements:

1.Basic knowledge of Javascript or jQuery(Javascript Library)

2.Intermediate knowledge on CSS (Able to write own css)

 

Preview

From this:

To This:

How does this works?

I've made a script which look into profiles and look for specific title in the text box so that it could customize that specific textbox css.

 

The Script(Place this in Custom Code)

<script type="text/javascript">

if(x$('.xg_widget_profiles_profile_show').length){

var store= x$('.module_text .xg_module_head h2').html();
   if(store == 'Your Title Text here'){
   //to style the whole module_text box
   x$('.module_text').css({'border' : 'yellow 1px solid','background-color':'blue'});

  //to style module body of module text

   x$('.module_text .xg_module_body').css({'background-color':'green'});
   }
   else{
   //do nothing as the title of textbox is not Your Title text here
   }

}

else{

//not on user profile , do nothing

}

</script>

 

Explanation

As you can see in the script above ,

The script first check whether you are on a profile ,then gets the module textbox header title out and compares it with the one you provided.

If its the same (==) , then it starts styling the module text based on your settings.

Text in green color are the ones you can change to your preference.

 

What I'm using

1. Ning Network own jQuery (Javascript Library) which is x$

2. jQuery .html()

3. jQuery .css()

 

Further Hacking

Overwriting !important

Sometimes a user set an !Important for their css variables which jQuery will not be able to overwrite it. So here's the solution:

x$('.module_text').attr('style','background-color:#000!important');

We will just use jQuery .attr() which adds an attribute to that element. In this case , i'm adding a style attribute to it.

Detecting members gender(if you enabled your network to display gender in profiles)

So in the script below , the script first checks whether its on a user profile , then check if it is on which gender profile , then if its male , it will color the textbox and inject an ad for male, if its female it will inject an ad for female.

<script type="text/javascript">

if(x$('.xg_widget_profiles_profile_show').length){

//get the gender from member detail in profiles

var getgen = x$('.profile .member_detail li:first-child');

    if(getgen == 'male'){

      //its male

     //change their textbox color

      x$('.module_text').css({'border' : 'yellow 1px solid','background-color':'blue'});     

      x$('.module_text .xg_module_body').css({'background-color':'green'});

     //or inject an ad into their textbox

     x$('.module_text .xg_module_body').append('my ad code here for male');
      }
      else{
      //if its not male , its female then..do something for female like add an ad too

       x$('.module_text .xg_module_body').append('my ad code here for female');
      }

}

else{

//not on user profile , do nothing

}

</script>

I'm using .append() above, You can use .after() .before() .prepend() , anything you like to inject the ads , just make sure you get the right element id/class.

Wait, How do I get the right element id/class 

I have written a tutorial on jQuery & Firebug , click here to view

 

 

jQuery is really fun. :)

Hope you like it.

 

 

You need to be a member of Ning Creators Social Network to add comments!

Join Ning Creators Social Network

Votes: 0
Email me when people reply –

Replies

  • NC for Hire
    Nice tip and explanation. Not sure about the massive banner ad at the bottom of it though ;-)
    SP
    • NC for Hire
      Thanks SP.
      Yeah I added an ad to let anyone looking for that kind of system a direction to look.
  • +1000

    can be adapted to display ads according to gender?

    • NC for Hire
      Do you mean inject ads into the textbox on member profiles by detecting their gender?
      • Yes, you can do this?

        • NC for Hire

          Yes , i just added the script above in the tip (further hacking).

  • This reply was deleted.
  • Thank estimated.

    Failed to make it work: (.

This reply was deleted.
 

Some interesting articles related to community management, digital marketing etc. could be found in our digest. Don't hesitate to leave a feedback so we would know that we should continue :-)

Latest Activity

Kathleen (SunKat) updated their profile
Feb 20
Scott Bishop posted a discussion
OMG! AI does it all. Anything you want to light up your Ning site, just ask Google AI. That's what…
Feb 5
Scott Bishop replied to Alex - Rosas † Negras's discussion
HTML Browser Popup Window Generator,possible with a click to have the window open for ning or other pages, this is my example
"Where at in a 3.0 website do you paste the code to? "
Feb 3
Scott Bishop replied to George H. Compton IV's discussion
(Ning 2 and 3) welcome / sign-in and sign-up pop-up module. Updated Aug 24, 2017
"Hi George, I'm not sure if this tip has been outdated or for some reason it's not working on my…"
Feb 3
Eva updated their profile
Jan 28
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"https://community.surfoutlook.com/
However, it's been solved. Ning helped me out with it. "
Jan 27
Alex - Rosas † Negras replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I don't remember your site, I'll check for you, can I have the link?"
Jan 26
Scott Bishop replied to ⚡JFarrow⌁'s discussion
🖼️ Improve Accessibility & SEO on Your Ning Photo Pages by Automatically Adding ALT Text from Photo Titles
"On your step 3 where you say "Paste in the script below", I'm not finding that. Did you forget to…"
Jan 25
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I think that setting was switched over to Admin as a default when I converted from 2.0 to 3.0…"
Jan 25
Alex - Rosas † Negras replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"settings members must post, if you put ADMIN it is FORBIDDEN TO PEOPLE"
Jan 25
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I got an answer back from Ning Support within an day. It was a setting that somehow slipped out of…"
Jan 22
Scott Bishop posted a discussion
I just realized that my members can no longer post pictures, videos, blogs, events, or anything…
Jan 21
More…

Meanwhile, you can check our social media channels