|
|
|
Addons and Modifications
|
|
Just about anywhere would be good, over by the avatar would be cool. Thanks, Ian
|
|
Addons and Modifications
|
|
It all depends on which spot you want it displayed.
|
|
Addons and Modifications
|
|
Cool one more quick one (I hope) where would I include this in showprofile.inc.php so the member image would show up. I had one of the mods ask because she posts birthdays and events for dues paying members.. Thanks again, Ian
|
|
Mod Suggestions
|
|
Originally Posted By: blaaskaakIf I remember correct it's a style setting. There is a style for topics with new posts. I have not been able to find this option in the new styles or editor. Just using newfolder/nonewfolder icon doesn't work either. I'
|
|
Promoting your Community
|
|
I don't know if this is the appropriate forum, but IMHO, having a good Host Provider which delivers in keeping your site online and working at its best is very important. How many have had too many headaches dealing with server issues, over-sold mySQ
|
|
Developer For Hire
|
|
Argh, sorry I missed this - has this been taken care of?
|
|
Addons and Modifications
|
|
yeah. Php Code:
$string = "hello ";
$string .= "world";
echo $string;
will result in Code:
hello world
|
|
Addons and Modifications
|
|
Thanks again, I kinda figured that was what you were doing with the .= bit. I will give it a shot. Ian
|
|
Addons and Modifications
|
|
Yes there is. Easiest would be the location field, to avoid template edits. The code that actually changes the custom title now to custom title+graphic should be changed to change the location field. Php Code:
$postrow[$i]['Location'] .= "<
|
|
Addons and Modifications
|
|
Just a quick question Yarp, the moderators are asking if it can be moved down below the avatars or the location field is there a way to do that? Thanks, Ian
|
|
Addons and Modifications
|
|
That is exactly what we needed! Thanks!!!!! Ian
|
|
Addons and Modifications
|
|
okay, I edited /scripts/showflat.inc.php a bit: Find: Php Code:
$topic_info = $dbh->fetch_array($sth, MYSQL_ASSOC);
add below: Php Code:
// get array of graphic users
$query = "
select distinct(t1.USER_ID)
from {$config['TABLE
|
|
Addons and Modifications
|
|
Thanks for the help! I assume the query would go into showflat.inc.php somewhere? I have been messing around with the main query in showflat.inc.php, but now I get as many posts as they are in groups and only 1 shows the image.. Ian PS Happy New
|
|
Addons and Modifications
|
|
I would do a slightly different approach that doesn't involve a template edit: First of all, we don't want to know every group the user is in, we just want to know if they are in (your case) group 10. Second, running this query for every user can b
|