vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Keep HTML in $foruminfo[description] (https://vborg.vbsupport.ru/showthread.php?t=73264)

mickmel 12-24-2004 11:44 AM

Keep HTML in $foruminfo[description]
 
I have what should be a pretty simple problem. I'm trying to show the forum description at the top of each forum when you're in it. To do that, you add:

$foruminfo[description]

in the FORUMDISPLAY template. However, my forum descriptions have some HTML in them (for linking to other areas of the site), and using this method the HTML gets stripped out. How can I have the forum description show up at the top of the forum without losing the HTML?

Thanks,
Mickey

mickmel 12-24-2004 05:32 PM

I figured it out! In forums/forumdisplay.php, go to about line 813 and find:

PHP Code:

//remove html to stop the breaking of the meta description
$foruminfo['description'] = strip_tags($foruminfo['description']); 

Add this line in between those two lines:

PHP Code:

$foruminfo['fulldescription'] = $foruminfo['description']; 

so it looks like this:

PHP Code:

//remove html to stop the breaking of the meta description
$foruminfo['fulldescription'] = $foruminfo['description'];
$foruminfo['description'] = strip_tags($foruminfo['description']); 

Now just use $foruminfo['fulldescription'] in your templates and it'll show it all!

SaN-DeeP 03-01-2005 10:53 AM

bumping back using the same gives an error in admincp when saving the forumsdisplay template:

The following error occurred when attempting to evaluate this template:

Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/san/public_html/forums/includes/adminfunctions_template.php(3096) : eval()'d code on line 20

This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.


All times are GMT. The time now is 10:46 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.00964 seconds
  • Memory Usage 1,719KB
  • 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
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete