vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Open Anouncement? (https://vborg.vbsupport.ru/showthread.php?t=198115)

Ghost Shadow 12-09-2008 05:09 AM

Still not working....

Style Manager
Default Style
Edit Templates
Show Thread Templates
SHOWTHREAD


Code:

$header
$navbar

<if condition="$thread[forumid]=='2'">
Testing 2
</if>
<if condition="$thread[forumid]=='7'">
Testing 3
</if>
<if condition="$thread[forumid]=='8'">
Testing 8
</if>


$poll

<if condition="$show['inlinemod']">


Lynne 12-09-2008 03:22 PM

You could try $forum[forumid] instead of $thread[forumid]. I just looked at my SHOWTHREAD template and I use $forum[forumid] in a condition for a couple of my forums, so I know that works.

Ghost Shadow 12-09-2008 04:24 PM

Still not working!!
Do I need to do anything elsewhere to make it work?
Is the location correct where I placed it, inserted it?
Can you please post your "condition" with the top and bottom line where it was inserted?

Thanks!!

Lynne 12-09-2008 04:55 PM

1 Attachment(s)
Are you sure you are changing the template for the correct style you are using? Put an X above it so you can see that it is there:

HTML Code:

$header
$navbar

<if condition="$forum[forumid]=='2'">
Testing 2
</if>
<if condition="$forum[forumid]=='7'">
Testing 3
</if>
<if condition="$forum[forumid]=='8'">
Testing 8
</if>


$poll
<if condition="$show['inlinemod']">

I just put that exact condition in the template on my website, only with forumid 12 instead of 2 (I don't have a forumid 2) and it worked just fine. It also worked fine with $thread[forumid] and with $forumid.

Attachment 90358

Ghost Shadow 12-10-2008 12:44 AM

My BAD...it is working but in the wrong area, that is why I could never see it.

It is showing up when you open a post, but I need it when you open a thread; back one page. Is it possible??

Followup:
Looks like it's not going to do what I need to do anyway. I have a table code that appears to only work in Posts, Announcement, and Sticky. BB Code [table] does not work with the above method.

https://vborg.vbsupport.ru/showthrea...57#post1467357

Lynne 12-10-2008 04:01 AM

I think a problem we are having here is terminology. A thread is made up of lots of posts. A thread is like what we are in right now - it is on the page showthread.php. Perhaps you are talking about the forumdisplay page which is a page that lists the child forums and the thread titles of the threads in that forum - like this page https://vborg.vbsupport.ru/forumdisplay.php?f=111

You could do something like we were discussing here for on the top of the FORUMDISPLAY page if you wanted.

Ghost Shadow 12-10-2008 04:31 AM

Lynne: Correct!! That is the location I want it to appear, the forumdisplay page!!!

Now I face a problem. Posts, Announcement, and Stickys appears to be the only means that BB Code [table] works in. If I wanted to use Notices or if statements, then BB Code [table] code would not work. Since I have it perfectly done in BB Code [table], and am not able to duplicate it using regular html table code.

Example of BB Code [table] code:
Code:

[table="width=100%"]SACRED TEXTS: Tripitaka: 'The Baskets' canon of Buddhist literature; discourses of the Buddha and/or his desciples.|GODHEAD: No omnipotent creator God. Many God-like beings subject to the law of rebirth (Dharma).|COSMOLOGY: Cyclical, endless becoming & dissolving. No point of creation.|ON TIME: Cyclical & not Important as cycle at rebirth continues forever.|ON THE NATURE OF THE SOUL: Life continues after death In another form. The cycle of birth / death can only be broken by achieving Enlightenment.[/table]
If you paste this code into a post, sticky or anouncement and you have BB Code [table] hack; it will look perfect, use it anywhere else, such as Notice or IF statement and it will not work.
Example of one of the tables coded in BB Code [table]:
https://vborg.vbsupport.ru/external/2008/12/1.bmp

Lynne 12-10-2008 02:49 PM

Just copy the html from your page source.

Ghost Shadow 12-10-2008 03:55 PM

Quote:

Originally Posted by Lynne (Post 1682455)
Just copy the html from your page source.


IT WORKED!!!!!!!!!!! FINALLY!!!
THANK YOU..THANK YOU.....THANK YOU Lynne!!!!!!!!

Three final questions:

1. How do I get it to show up on forumdisplay page now, one page up from here?
2. How do I put a quarter inch space between the bottom of the table and the "Closed" icon?
3. Can I reduce the space a bit at the top?

https://vborg.vbsupport.ru/external/2008/12/77.jpg

Lynne 12-10-2008 04:13 PM

This is what I'd do.....

put in a template_hook in FORUMDISPLAY where you want this stuff to appear:
HTML Code:

$template_hook[forumdisplay_notice]
Then, create a plugin using the 'forumdisplay_start' hook location:
PHP Code:

if ($forumid == '2') {
eval(
'$template_hook[forumdisplay_notice] .= "<table><tr><td>Your HTML here - remember if you have link you need to escape it <a href=\"yourlink.php\">Your Link</a></td></tr></table>";');
}
if (
$forumid == '7') {
eval(
'$template_hook[forumdisplay_notice] .= "<table><tr><td>Your HTML here - remember if you have link you need to escape it <a href=\"yourlink.php\">Your Link</a></td></tr></table>";');
}
if (
$forumid == '8') {
eval(
'$template_hook[forumdisplay_notice] .= "<table><tr><td>Your HTML here - remember if you have link you need to escape it <a href=\"yourlink.php\">Your Link</a></td></tr></table>";');



You'll need to pretty that up, but that is how I'd go about it. Actually, if you wanted to do it prettier, your eval a template, but you can go look into that in the articles forum (read up on hooks).

I tested that exact code, only with forumids I use, and it works (but I'd change it to look nicer).


All times are GMT. The time now is 07:55 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.01133 seconds
  • Memory Usage 1,752KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_html_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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