MyBB Community Forums

Full Version: Forum Lastpost delete arrow ( Jump ) icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to delete last post jump icon?

can somebody help me ?

Thank you

[Image: PpVu4Fr.png]
You want to remove it completely? But it is a useful function!
But well, if you want it gone:

Go to Templates&Style->Templates->[Your Theme's Template Set]->"Forum Display Templates"->forumdisplay_thread_gotounread
First Backup the file in case you want to revert it.
Now in the file there is one line of code
Before the Code place "<!--" and after place "-->" Without the quotations.
Now dont forget to save it.

Now the Last Post Jump Icon is gone.
(2019-11-28, 05:57 PM)Plut0nium Wrote: [ -> ]You want to remove it completely? But it is a useful function!
But well, if you want it gone:

Go to Templates&Style->Templates->[Your Theme's Template Set]->"Forum Display Templates"->forumdisplay_thread_gotounread
First Backup the file in case you want to revert it.
Now in the file there is one line of code
Before the Code place "<!--" and after place "-->" Without the quotations.
Now dont forget to save it.

Now the Last Post Jump Icon is gone.

this is my code, where do I insert it?

<a href="{$thread['newpostlink']}"><img src="{$theme['imgdir']}/jump.png" alt="{$lang->goto_first_unread}" title="{$lang->goto_first_unread}" /></a> 
(2019-11-28, 06:42 PM)MyBBEinstein Wrote: [ -> ]
(2019-11-28, 05:57 PM)Plut0nium Wrote: [ -> ]You want to remove it completely? But it is a useful function!
But well, if you want it gone:

Go to Templates&Style->Templates->[Your Theme's Template Set]->"Forum Display Templates"->forumdisplay_thread_gotounread
First Backup the file in case you want to revert it.
Now in the file there is one line of code
Before the Code place "<!--" and after place "-->" Without the quotations.
Now dont forget to save it.

Now the Last Post Jump Icon is gone.

this is my code, where do I insert it?

<a href="{$thread['newpostlink']}"><img src="{$theme['imgdir']}/jump.png" alt="{$lang->goto_first_unread}" title="{$lang->goto_first_unread}" /></a> 

Like this:
<!--<a href="{$thread['newpostlink']}"><img src="{$theme['imgdir']}/jump.png" alt="{$lang->goto_first_unread}" title="{$lang->goto_first_unread}" /></a>--> 

That way you basically comment the arrow out
(2019-11-28, 07:51 PM)Plut0nium Wrote: [ -> ]
(2019-11-28, 06:42 PM)MyBBEinstein Wrote: [ -> ]
(2019-11-28, 05:57 PM)Plut0nium Wrote: [ -> ]You want to remove it completely? But it is a useful function!
But well, if you want it gone:

Go to Templates&Style->Templates->[Your Theme's Template Set]->"Forum Display Templates"->forumdisplay_thread_gotounread
First Backup the file in case you want to revert it.
Now in the file there is one line of code
Before the Code place "<!--" and after place "-->" Without the quotations.
Now dont forget to save it.

Now the Last Post Jump Icon is gone.

this is my code, where do I insert it?

<a href="{$thread['newpostlink']}"><img src="{$theme['imgdir']}/jump.png" alt="{$lang->goto_first_unread}" title="{$lang->goto_first_unread}" /></a> 

Like this:
<!--<a href="{$thread['newpostlink']}"><img src="{$theme['imgdir']}/jump.png" alt="{$lang->goto_first_unread}" title="{$lang->goto_first_unread}" /></a>--> 

That way you basically comment the arrow out


okay thank you friend!