Quote:
Originally Posted by taydu
great mod harmor19,
How do i make the text of the custom field appear before the actual post content?
Currently you have
The content of the post here
----------------------------
Custom field text area
----------------------------
How do I make it
----------------------------
Custom field text area
----------------------------
The content of the post here
|
Easy, go to the relevant plugin, I mentioned 2 posts above urs.
then:
change:
Quote:
$vbulletin->GPC['message'] = $vbulletin->GPC['message'] . "<br /><br />
----------------------------------------<br />
$custom_message
----------------------------------------<br />";
|
into:
Quote:
$vbulletin->GPC['message'] = "<br />
----------------------------------------<br />
$custom_message
----------------------------------------<br /><br />" . $vbulletin->GPC['message'];
|