Add topic title when replying to a post
3 posters
Page 1 of 1
Add topic title when replying to a post
Hello
When replying to a post, or quoting a post to reply, the message window appears to add a post and you can see previous posts on that page.
Is it possible to add the topic title somewhere, maybe under Post a Reply or somewhere near the reply box? Often times with the nature of our forum, a post can take several minutes to put together because we are gathering information. Once it's ready to post, there is nothing to double check to make sure it's in the right topic.
Is this possible?
Thanks
When replying to a post, or quoting a post to reply, the message window appears to add a post and you can see previous posts on that page.
Is it possible to add the topic title somewhere, maybe under Post a Reply or somewhere near the reply box? Often times with the nature of our forum, a post can take several minutes to put together because we are gathering information. Once it's ready to post, there is nothing to double check to make sure it's in the right topic.
Is this possible?
Thanks
Re: Add topic title when replying to a post
Have you tried using the advanced editor? I think that might show the topic title above the message box.
-Brandon
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Add topic title when replying to a post
I tried it, it doesn't make a difference, thanks for the suggestion though.
Add topic title when replying to a post
Hi @Guardian-Angel,
Go to Administration Panel > Modules > JavaScript codes management > Create a new script
Placement : In all the pages
Paste the following code :
This should automatically load in the default title of the topic, if it's empty.
Go to Administration Panel > Modules > JavaScript codes management > Create a new script
Placement : In all the pages
Paste the following code :
- Code:
$(function() {
if (!document.post || !document.post.t || document.post.subject.value) return;
$.get('/t' + document.post.t.value + '-', function(d) {
document.post.subject.value = 'Re: ' + $('.page-title', d).text();
});
});
This should automatically load in the default title of the topic, if it's empty.
Re: Add topic title when replying to a post
Hi Ange
That worked perfectly however it took away my Like Button, reverted back to the default +- bar, and it took away the tool bar and all the options in the quick reply box. It was just a plain white box.
However when choosing the post reply button, the tools were all there.
That worked perfectly however it took away my Like Button, reverted back to the default +- bar, and it took away the tool bar and all the options in the quick reply box. It was just a plain white box.
However when choosing the post reply button, the tools were all there.
Similar topics
» Topic title on top of post
» Moving Post Title?
» Starting a topic / replying to a topic.
» page title for topic
» Get Topic Title
» Moving Post Title?
» Starting a topic / replying to a topic.
» page title for topic
» Get Topic Title
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum