Scroll To Top
-
- BBCoder I
- Posts: 4
- Joined: 28 Dec 2014, 15:55
- BBCodes: 25
- Favourite MOD: Pages
- Location: Scotland
- Contact:
Re: Scroll To Top
Great little extension. All these add up to make great looking boards. Thank you. A couple more and I will soon be hitting the donate button
-
- BBCoder I
- Posts: 4
- Joined: 28 Dec 2014, 15:55
- BBCodes: 25
- Favourite MOD: Pages
- Location: Scotland
- Contact:
Re: Scroll To Top
Has this stopped working since 3.1.3
-
- BBCoder II
- Posts: 27
- Joined: 28 Apr 2011, 12:55
Re: Scroll To Top
Hi there stoker. I need help on this, if you could help. Dont know where I could post this since I cant create new topics no more oO
Description: Adds a last post link to take you to the last post in the topic.
Open viewtopic.php
find:
add after:
find:
add after:
Open language/en/viewtopic.php
find:
add before:
Open styles/prosilver/template/viewtopic_topic_tools.html
find:
add after:
After all those edits I'll have a link to the last post of the topic. If the topic has 3 pages it will take me to the last post of the 3rd page.
BUT, what I really want to acheive is to go to the last post of the current page.
So if a topic has 3 pages and im on the 2nd page and click that button, then I need to be redirected to the last post of that 2nd page.
Can you help? THANKS!
Description: Adds a last post link to take you to the last post in the topic.
Open viewtopic.php
find:
Code: Select all
// Replace naughty words in title
$topic_data['topic_title'] = censor_text($topic_data['topic_title']);
Code: Select all
$view_topic_url_params = 'f=' . $forum_id . '&t=' . $topic_id;
Code: Select all
'U_EMAIL_TOPIC' => ($auth->acl_get('f_email', $forum_id) && $config['email_enable']) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=email&t=$topic_id") : '',
Code: Select all
// begin last post
'U_LAST_POST' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", $view_topic_url_params . '&p=' . $topic_data['topic_last_post_id']) . '#p' . $topic_data['topic_last_post_id'],
// end last post
find:
Code: Select all
'LINKAGE_FORBIDDEN' => 'You are not authorised to view, download or link from/to this site.',
Code: Select all
'LAST_POST' => 'Go to last post',
find:
Code: Select all
<!-- IF PAGE_NUMBER --><!-- IF PAGINATION -->
Code: Select all
• <a href="{U_LAST_POST}">{L_LAST_POST}</a>
BUT, what I really want to acheive is to go to the last post of the current page.
So if a topic has 3 pages and im on the 2nd page and click that button, then I need to be redirected to the last post of that 2nd page.
Can you help? THANKS!