vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Postbit Icon change and thread color (https://vborg.vbsupport.ru/showthread.php?t=298586)

SwalyAaron 07-09-2013 10:13 PM

I made a postbit icon that says "DEV", I want it to be used automatically when I post a thread so it stands out from other threads, I also want it to be changed to that when ever I post on a thread so it stands out as a "DEV" posted on it. Also trying to get this recolored:

I want "Scorch" and "Hello" to be recolored to BLUE ONLY if its a Dev post, I used the plugin above to do it for sections like here:

And this is the postbit icon that I want changed automatically:

exel 07-10-2013 08:08 AM

For the dev icon, you can probably do something like..

threadbit_display again.

if ($thread['postuserid'] == 1) {

$thread[threadiconpath] = "images/misc/DEVICON.PNG";

}

^ Confirmed it works just fine.

--------------- Added [DATE]1373488952[/DATE] at [TIME]1373488952[/TIME] ---------------

As for your forumhome edit request, there's no hook before the calling of lastpostby

So you might look into: https://vborg.vbsupport.ru/showthrea...ighlight=color

As that adds a hook before it, all you'd have to do is edit the php code.

SwalyAaron 07-10-2013 10:22 PM

Quote:

Originally Posted by exel (Post 2433032)
For the dev icon, you can probably do something like..

threadbit_display again.

if ($thread['postuserid'] == 1) {

$thread[threadiconpath] = "images/misc/DEVICON.PNG";

}

^ Confirmed it works just fine.

--------------- Added [DATE]1373488952[/DATE] at [TIME]1373488952[/TIME] ---------------

As for your forumhome edit request, there's no hook before the calling of lastpostby

So you might look into: https://vborg.vbsupport.ru/showthrea...ighlight=color

As that adds a hook before it, all you'd have to do is edit the php code.

The thread icon:
It's working perfectly when I make a thread, thank you so much for that. But I also want it to change on ANY thread that I post on (really just to notify that I have posted on said thread)

The forumhome recoloring:
Now that I have a hook, what would my code be? I tried running this:
Code:

if ($thread['postuserid'] == 1) {$thread['lastposter'] = '<span style="color: #0099FF;">' . $thread['lastposter'] . '</span>';}
The product itself works its adding HTML mark up but I want it to be a blue color not my HTML mark up and I only want it to work for USER ID = 1, I'm trying to mess with the PHP I will try and reply before you do if I find anything that will work.

exel 07-11-2013 03:01 AM

For the thread icon, try doing..

if ($thread['postuserid'] == 1 || $thread[lastposter] == 1) {

$thread[threadiconpath] = "images/misc/DEVICON.PNG";

}

As for the other mod, find the plugin colorname

And replace all with:

if($lastpostinfo['lastposter'] == YOURUSERNAME) {

$lastpostinfo['lastposter'] = '<span style="color:#8B0000;">".$lastpostinfo['lastposter']."</span>';

}

SwalyAaron 07-11-2013 04:21 AM

It still doesn't change, its not showing any errors but I don't see what its doing

Color username plugin error when enabled :
Parse error: syntax error, unexpected T_STRING in /home/vanquish/public_html/forums/includes/functions_forumlist.php(268) : eval()'d code on line 3

exel 07-11-2013 06:48 AM

Erm, if you want to PM me an admin account on your site with settings, template and plugin permissions, I can have a look. Kind of working blinded here. :p

SwalyAaron 07-11-2013 08:58 AM

Sure will work it out with you tomorrow, will give you an account to work on

exel 07-11-2013 07:02 PM

Quote:

Originally Posted by SwalyAaron (Post 2433162)
Sure will work it out with you tomorrow, will give you an account to work on

Sounds good.

SwalyAaron 07-24-2013 07:36 AM

Incredible thank you


All times are GMT. The time now is 10:01 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01064 seconds
  • Memory Usage 1,739KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete