The first forum was ID 25, so all three lines in my template worked, I saw:
25 25 Show this if forum id is 25
I added the include to all four forumbit templates:
forumhome_forumbit_level2_post
forumhome_forumbit_level2_nopost
forumhome_forumbit_level1_post
forumhome_forumbit_level1_nopost
But the output only appeared next to the first forum listing.
For the include, I used the ad_location array when using the hook on forum.php because it was registered there:
$ad_location['board_inside_forum_listing']
I used the forum array when I used the forumbit_display hook because the forum array was being registered there:
$forum['board_inside_forum_listing']
I'll try using the ad_location array while using the forumbit_display hook and check through my code for mistakes.
Be Well
--------------- Added [DATE]1339184649[/DATE] at [TIME]1339184649[/TIME] ---------------
One more time.
Here is my plugin code:
Code:
ob_start();
require_once('includes/plugin_marbuzz_insert_block_hook_forumhome_start.php');
$marbuzz_insert_block_forumhome_start = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('ad_board_inside_forum_listing',array('marbuzz_insert_b
Here is the code in the file called by the plugin:
Code:
array_push($globaltemplates, 'ad_board_inside_forum_listing');
$template = vB_Template::create('ad_board_inside_forum_listing');
$template->register('forumid', $forumid);
$ad_location['board_inside_forum_listing'] = $template->render();
OR
$forum['board_inside_forum_listing'] = $template->render();
print $forumid;
echo $forumid;
Here is the code in my template named "ad_board_inside_forum_listing":
Code:
test
{vb:var forumid}
{vb:raw forumid}
<vb:if condition="$forumid == 25">Show this if forum id is 25</vb:if>
{vb:var marbuzz_forumbit_display_hook}
{vb:raw marbuzz_forumbit_display_hook}
<vb:if condition="$marbuzz_forumbit_display_hook== 25">Show this if forum id is 25</vb:if>
Here's the code I place in "forumhome_forumbit_level2_post" and the other forumbit files:
Code:
{vb:raw ad_location.board_inside_forum_listing}
OR
{vb:raw forum.board_inside_forum_listing}
Case A:
Use the forumhome_start hook and the $ad_location variable. The text appears next to each forum name, no ID.
Case B:
Use the forumbit_display hook and the $ad_location variable. Nothing appears.
Case C:
Use the forumbit_display hook and the $forum variable. THe Text and ID appears next to the name of the first forum only.
I tried echoing and printing the ID and then using the plugin variable "marbuzz_insert_block_forumhome_start" to display it, but nothing there.
Any idea why it doesn't work past the first forum?
Be Well