View Single Post
Old 04-13-2016, 02:55 PM  
sarettah
see you later, I'm gone
 
Industry Role:
Join Date: Oct 2002
Posts: 14,073
Disclaimer: This is all an educated guess based on 2 minutes of looking at the code.

If you are talking about the NMIP WP plugin for chaturbate (the one that has been posted around here a bunch of times) Then in the plugins folder there is a functions.php file.

In there is a function called nmp_thumbnail and that is what you would modify to get the title the way you want it.

Code:
function nmp_thumbnail( $link, $user, $image, $show, $age, $gender, $online, $viewers ) 
{
  echo '<li class="element">
 	 <div class="cb_thumbnail">

	 <a href="' . $link . '" title="' . $user . '\'s Free Webcam">

         <img src="' . $image . '" alt="' . $user . '" /></a>
	 <div class="cb_status ' . $show . '">' . $show . '</div>
	 </div>
	 <div class="cb_user">
	 <a href="' . $link . '" title="' . $user . '\'s Free Webcam"><i class="fa fa-user"></i>&nbsp;<span class="name">' . nmp_limit_chars( $user, 20 ) . '</span></a>
	 <span class="cb_age"><span class="age">' . $age . '</span> <span class="cb_gender">' . $gender .  '</span></span>
	 </div>
	 <span class="online" style="display: none;">' . $online . '</span>
	 <div class="cb_time_online"><i class="fa fa-clock-o"></i>&nbsp;' .  nmp_ago( $online ) . '</div>
	 <div class="cb_num_users"><span class="viewers">' . $viewers . '</span>&nbsp;<i class="fa fa-eye"></i>   </div>
	 </li>';			
}
You would modify the line that says:

Code:
<a href="' . $link . '" title="' . $user . '\'s Free Webcam">
To make the title the way you want it.

.
__________________
All cookies cleared!
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook