PDA

View Full Version : VB4 where is the text Message after Title for newthread post


reddyink
11-28-2010, 08:42 PM
In 3.8 we had Title and then" Message". What happened to the text "Message" in 4.0
How to enable it or customize it?

Thank you for your time.

reddyink
12-13-2010, 03:06 PM
Anyone??

FReeSTER
12-13-2010, 03:18 PM
hmm, can you explain a bit more specific?

reddyink
12-19-2010, 01:51 PM
hmm, can you explain a bit more specific?

Please see the attachment. The Text Message is missing in VB4 and I would like add and/or customize it.

Lynne
12-19-2010, 04:54 PM
You can add it back to the template if you want.

To find the template to modify, do this - vboptions > General Settings > Add Template Name in HTML Comments > set to Yes . Then go back to your page and view the source code and you will see the name of the template called around your part of the code. (Sometimes the template is the one mentioned at the very top of the page source.)

LifesGreatestGift
12-19-2010, 04:58 PM
Open template newthread

Find:
<label for="subject" class="full">{vb:rawphrase title}:</label>
<input type="text" class="primary full textbox" name="subject" id="subject" value="{vb:raw subject}" maxlength="{vb:raw vboptions.titlemaxchars}" tabindex="1" />
&nbsp;<img id="display_posticon" src="{vb:raw selectedicon.src}" alt="{vb:raw selectedicon.alt}" />
</div>


Add after:
<label for="messagearea" style="font-weight:bold;">{vb:rawphrase message}:</label>

Open template newreply

Find:
<label for="title" class="full">{vb:rawphrase title}:</label>
<input type="text" class="primary textbox full" name="title" id="title" value="{vb:raw title}" maxlength="{vb:raw vboptions.titlemaxchars}" tabindex="1" title="{vb:rawphrase optional}" />
&nbsp;<img id="display_posticon" src="{vb:raw selectedicon.src}" alt="{vb:raw selectedicon.alt}" />
</div>

Add after:
<label for="messagearea" style="font-weight:bold;">{vb:rawphrase message}:</label>

Open template pm_newpm

Find:
<!-- subject field -->
<div class="blockrow">
<label for="title" class="full">{vb:rawphrase title}:</label>
<div><input type="text" class="primary full textbox" id="title" name="title" value="{vb:raw pm.title}" maxlength="85" tabindex="1" />&nbsp;<img id="display_posticon" src="{vb:raw selectedicon.src}" alt="{vb:raw selectedicon.alt}" /></div>
</div>
<!-- / subject field -->

<!-- message area -->

Add after:
<label for="messagearea" style="font-weight:bold;">{vb:rawphrase message}:</label>



Enjoy! :)

reddyink
12-19-2010, 05:05 PM
Thank you TheWindows7Site

Thank you Lynne

LifesGreatestGift
12-19-2010, 05:14 PM
No problem. Let me know how that works for you.