xLc
Junior Member
Posts: 290
inherit
180982
0
Sept 18, 2019 6:25:07 GMT -8
xLc
290
July 2012
lifestylecourier
|
Post by xLc on Jan 29, 2013 10:53:18 GMT -8
How do I make v5 goto last post made and not the beginning of the thread?
|
|
inherit
173717
0
Jan 13, 2018 8:06:21 GMT -8
Smokeygrey
732
November 2011
smokeygrey
|
Post by Smokeygrey on Jan 29, 2013 11:07:47 GMT -8
Unfortunately. You cant do it in V5, in the same way we could in V4.5
I find this to be very disappointing.
You do have the option of pressing the " NEW " button at the start of a thread. This will take you to the last un-read post.
But once you have done it. The " New " Disappears, and you cant do it again.
I liked the old system, where you just clicked on the date above the last members post, and Hey Presto! You were there, and you could do this time and time again.
Hope this helps.
|
|
xLc
Junior Member
Posts: 290
inherit
180982
0
Sept 18, 2019 6:25:07 GMT -8
xLc
290
July 2012
lifestylecourier
|
Post by xLc on Jan 29, 2013 11:24:16 GMT -8
Thanks, will there be a code to fix this?
|
|
inherit
173717
0
Jan 13, 2018 8:06:21 GMT -8
Smokeygrey
732
November 2011
smokeygrey
|
Post by Smokeygrey on Jan 29, 2013 11:34:14 GMT -8
I dont think that a code has been asked for.
You are welcome to ask if you like!
|
|
Vinh
Junior Member
Posts: 322
inherit
164687
0
Oct 3, 2016 10:36:41 GMT -8
Vinh
322
March 2011
vinh
|
Post by Vinh on Jan 30, 2013 14:24:41 GMT -8
Hi xLc, Smokeygrey brings up a valid point about the last post feature in v4. I will add it to our bugtracker so that our development team can decide on whether to implement it into v5. Thanks!
|
|
Former Member
inherit
guest@proboards.com
187048
0
Nov 21, 2024 17:42:12 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Feb 2, 2013 21:09:22 GMT -8
Yes I'd also like the ability to go to the last post. Some of my forum threads are 3 to 4 pages long. I don't want to go to the start of the first page every time.
|
|
inherit
96172
0
Nov 29, 2017 7:41:17 GMT -8
bluebayou
484
January 2007
bluebayou
|
Post by bluebayou on Feb 3, 2013 5:14:10 GMT -8
I have threads on my forum that are *hundreds* of pages long, so yes, please implement this is V5!
|
|
inherit
184018
0
Aug 1, 2022 6:38:30 GMT -8
ksprepsports
40
October 2012
ksprepsports
|
Post by ksprepsports on Feb 3, 2013 14:11:26 GMT -8
Yes, please implement this in V5!
I upgraded my site yesterday and have members asking about it.
When you click on new, it still goes to first post rather than the newest . So apparently my new button is not working. Can this be fixed in settings? Also, what are the check boxes to the left of topics for?
|
|
Vinh
Junior Member
Posts: 322
inherit
164687
0
Oct 3, 2016 10:36:41 GMT -8
Vinh
322
March 2011
vinh
|
Post by Vinh on Feb 4, 2013 9:34:20 GMT -8
Hi ksprepsports, can you take a look at the following post explaining how the new icon works? If you experience a behavior that is different from that described in the post, can you make a bug report in the bug board with details on how to we can recreate the issue? The checkboxes to the left of threads are used with the actions menu. You would check threads you want to perform actions on. Then you can click the Actions dropdown that is to the left of the Search field. Actions include things like Mark as Read, Mark as New, Bookmark, etc.
|
|
inherit
186478
0
Dec 29, 2018 21:31:18 GMT -8
mortiemcsnurd
33
November 2012
mortiemcsnurd
|
Post by mortiemcsnurd on Feb 4, 2013 12:07:48 GMT -8
why cannot thread posts be an option for the board so we can chose, as admin, how we want the posts to appear for members, most recent post first at top of thread or original post to most recent post in thread?
|
|
inherit
184018
0
Aug 1, 2022 6:38:30 GMT -8
ksprepsports
40
October 2012
ksprepsports
|
Post by ksprepsports on Feb 4, 2013 13:43:57 GMT -8
Thanks Vinh.
|
|
Vinh
Junior Member
Posts: 322
inherit
164687
0
Oct 3, 2016 10:36:41 GMT -8
Vinh
322
March 2011
vinh
|
Post by Vinh on Feb 4, 2013 17:28:34 GMT -8
why cannot thread posts be an option for the board so we can chose, as admin, how we want the posts to appear for members, most recent post first at top of thread or original post to most recent post in thread? Although it's not something that can be done currently, feel free to create a new thread in the Feature Requests board.
|
|
Vinh
Junior Member
Posts: 322
inherit
164687
0
Oct 3, 2016 10:36:41 GMT -8
Vinh
322
March 2011
vinh
|
Post by Vinh on Feb 19, 2013 12:07:06 GMT -8
xLc, Smokeygrey, @amsf, bluebayou, ksprepsportsUPDATE: Good news, we've now decided to make the last post column go to the last post of the thread when clicked. The change should be live on v5 forums in the near future. You can still apply the template change detailed below if you like. If you already have made the change, you do not need to undo your changes if you don't want to. It won't conflict with the code changes our development team has made.It was decided that we will not make the last post column go to the last post of the thread. However, by customizing the theme template, you can give the last post column the ability to go to the last post.
Here's how to do this: - Go to the Admin area.
- At the top, hover over Themes and then click on the Layout Templates sub-menu.
- Select the theme you want to edit by using the dropdown menu next to where it says Current Theme.
- Click the Board link under the Template Name column.
- Click the Thread List tab.
- Find the line of html code that says:
<td class="latest last">by $[thread.last_post.created_by_user]<br />$[thread.last_post.date]</td>
- Replace that line of html code with this one:
<td class="latest last">by $[thread.last_post.created_by_user]<br /><a href="/post/$[thread.last_post.id]/thread">$[thread.last_post.date]</a></td> This change makes the date a clickable link that will go to the last post of the thread. - Click the Save Changes button at the bottom.
- Now go view a board on your forum and try clicking on the date in the last post column.
|
|
inherit
173717
0
Jan 13, 2018 8:06:21 GMT -8
Smokeygrey
732
November 2011
smokeygrey
|
Post by Smokeygrey on Feb 19, 2013 13:48:24 GMT -8
Brilliant ! Thanks VinhWill give this a try. [ Edit ] Works well! My members will be pleased.
|
|
inherit
22402
0
Nov 8, 2021 11:42:58 GMT -8
DeltaDart
Ultimate Interceptor
522
April 2004
mcgeep
|
Post by DeltaDart on Feb 19, 2013 17:09:10 GMT -8
Very nice Vinh works like a charm!
|
|