Wouldn't it be cool if Google had an API that we could use to update it directly. That way every time a new post is created, or a post that has been edited is saved, the new data would be sent to Google for them to put into their index.
The recent posts link is a nofollow'd link.
It's not broken.The thing with having urls like community/posts/ , will this be fixed in the near future
You can edit the template to show the thread URL instead of the last post URL, if you wish. You can use template conditionals to show a different link to guests vs registered members.On my forum I have the option that guest see always the orig. url of threads on my forum homepage
only logged in member go to latest posts.
public function getPostSpecificRedirect(array $post, array $thread,
$redirectType = XenForo_ControllerResponse_Redirect::SUCCESS
)
{
$page = floor($post['position'] / XenForo_Application::get('options')->messagesPerPage) + 1;
return $this->responseRedirect(
$redirectType,
XenForo_Link::buildPublicLink('threads', $thread, array('page' => $page)) . '#post-' . $post['post_id']
);
}
public function getPostSpecificRedirect(array $post, array $thread,
$redirectType = XenForo_ControllerResponse_Redirect::SUCCESS
)
{
$page = floor($post['position'] / XenForo_Application::get('options')->messagesPerPage) + 1;
return $this->responseRedirect(
$redirectType,
XenForo_Link::buildPublicLink('threads', $thread, array('page' => $page))
);
}
try something like =>I'm trying with something like this but no result so far
<xen:foreach loop="$thread.lastPageNumbers" value="$pageNumber" i="$i" count="$count">
</xen:foreach>
Last page number on that thread should be page number {$thread.lastPageNumbers.{$count}}
There are issues with array keys, or so it seems.
We use essential cookies to make this site work, and optional cookies to enhance your experience.