vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   str replace into forumhome_forumbit_level2_post (https://vborg.vbsupport.ru/showthread.php?t=229509)

BBR-APBT 12-05-2009 12:31 AM

Well after looking whats wrong with a template?

Just do a auto template with in the xml file.

Link14716 12-05-2009 09:43 AM

Here's an example of how I do it. Not sure what issues your code is having.
PHP Code:

/* If you want to edit the template yourself, by default this latches on to threadbit on <div class="threaddetailicons">
    and adds the contents of the threadbit_stafftracker template right after it. */

$threadbitsearch '<div class="threaddetailicons">';
if (isset(
$vbulletin->templatecache['threadbit'])) {
    
$vbulletin->templatecache['threadbit'] = str_replace($threadbitsearch$threadbitsearch vB_Template::fetch_template_raw('threadbit_stafftracker'), $vbulletin->templatecache['threadbit']);


Essentially, call your template using vB_Template::fetch_template_raw('templatename') - that way it pulls the raw code needed to be eval'd at the end. If you do it that way, it shouldn't fail. Good luck.

BBR-APBT 12-05-2009 11:04 PM

Hey Elmer sorry it took so long been busy.

Here is what you are looking for:
Code:

$vbulletin->templatecache['forumhome_forumbit_level2_post'] = str_replace(array('<p class="forumdescription">'), array('<p class="forumdescription"><img src="\' . $forum[\'iconlocation\'] . \'" alt="\' . $forum[\'title\'] . \'" />'), $vbulletin->templatecache['forumhome_forumbit_level2_post']);
Make a plugin with the hook location process_templates_complete
I named mine "Forum Icon Template Replacement"

Put the code from above in there.

Be advised there is no if statement so it shows for every forum even if there is no icon in place I left that for you to do.

Elmer 12-06-2009 08:08 PM

Thaks BBR, I will try again, I'll let you know if it works.


All times are GMT. The time now is 01:35 AM.

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.01169 seconds
  • Memory Usage 1,723KB
  • 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
  • (1)bbcode_php_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
  • (4)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