The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Thread management in quick reply - vBulletin 4
Hi,
In my vBulletin 3 forum I did some template edits which made it possible to stick, unstick, open and close threads from quick reply. When submitting a message from quick reply you could use a checkbox to open / close and stick / unstick the topic you were posting in when you had enough permissions to do so. This worked very well, and I kinda want it back in my vBulletin 4 website. However, because of the new way templates are build, I fail to do so. I managed to get some of it working with the following: In SHOWTHREAD, find Code:
{vb:rawphrase show_your_signature} <div class="blockrow" id="aftersubmit"> </vb:if> </div> Code:
<vb:if condition="$show['openclose']"> <li><label for="cb_openclose"><input type="checkbox" name="openclose" id="cb_openclose" value="1" tabindex="1" {vb:raw checked.openclose} /> <vb:if condition="$show['closethread']">{vb:rawphrase close_this_thread}<vb:else />{vb:rawphrase reopen_this_thread}</vb:if></label></li> </vb:if> <vb:if condition="$show['stickunstick']"> <li><label for="cb_stickunstick"><input type="checkbox" name="stickunstick" id="cb_stickunstick" value="1" tabindex="1" {vb:raw checked.stickunstick} /> <vb:if condition="$show['unstickthread']">{vb:rawphrase unstick_this_thread}<vb:else />{vb:rawphrase stick_this_thread}</vb:if></label></li> </vb:if> After a lot of trial and error, I changed the Code:
<vb:if condition="$show['stickunstick']"> Code:
<vb:if condition="$show['openclose']"> Can somebody tell me what I'm doing wrong here? Why won't the $show['stickunstick'] show up, and is there a way to correct this? This is how I want it to be, when everything works like it should: Thanks for any help you guys could give me. |
#2
|
||||
|
||||
Is there anyone who can help me out with this?
|
#3
|
|||
|
|||
I like the idea and hope someone can help you as this looks like something I want as well.
|
#4
|
||||
|
||||
Have you tried just printing out what $show['stickunstick'] is set to in the template? Make sure it has a value. Also, make sure the user has permission to stick/unstick the thread of $show[] will be false.
|
#5
|
||||
|
||||
Quote:
However, now it works, but there is a weird bug suddenly. When looking at a thread while logged in, the header changes to show this weird thing above it: When going to a thread as a guest, you get the following error message: Unable to add cookies, header already sent. File: ../showthread.php Line: 1 The things I have done so far are 1) the template edit I did in my first post of this topic (except for changing stickunstick to openclose, I changed it back to stickunstick) and 2) edited showthread.php (which is causing this problem for some reason): Find: Code:
// build quick reply if appropriate if ($show['quickreply']) { require_once(DIR . '/includes/functions_editor.php'); $show['wysiwyg'] = ($forum['allowbbcode'] ? is_wysiwyg_compatible() : 0); // set show signature hidden field $showsig = iif($vbulletin->userinfo['signature'], 1, 0); Code:
// can this user stick this thread? if (can_moderate($threadinfo['forumid'], 'canmanagethreads')) { $show['stickunstick'] = true; } else { $show['stickunstick'] = false; } if ($show['openclose'] OR $show['stickunstick']) { $show['closethread'] = iif($threadinfo['open'], true, false); $show['unstickthread'] = iif($threadinfo['sticky'], true, false); } else { $threadmanagement = ''; } Hope someone can help me on this some more. |
#6
|
||||
|
||||
I can't see why what you added would add that block of code. What editor are you using? If you aren't using something for plain, basic text editing, like notepad, then extra characters may be added into the file like what you are seeing.
|
#7
|
||||
|
||||
I've used notepad for editing, and vbulletin template manager of course.
Trying to use the code again in a clean showthread.php file won't work either. The problem only happens when I add the code to showthread.php though. Could it be that some of the code is doing something that is already being done somewhere and is causing problems? For example, something inside the templates or the open / closed code in showthread.php that was already there? |
#8
|
||||
|
||||
I just don't see anything in your code that would do that. Try taking away some of the code to narrow down what part of it is doing that.
|
#9
|
||||
|
||||
After trying multiple times it seemed that ány edit would cause this.
So instead I edited the showthread.php in notepad++, adding this code in and upload the modified file. Now it works like it should. Thank you very much Lynne, I'm glad it works now. |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|