Hi dbrewood,
Hi Leenoz, I'm Donell. I wrote you a few days ago for the Zeina topic post in the phpBB forum. Thanks for your reply there and for the message in inbox, I took the opportunity and bought the PRO version. Thank you very much for the coupon.Leenoz wrote: ↑Thu Jul 25, 2024 6:24 pm Hi Donell,
The issue has been reviewed.
You have probably downloaded this version of the extension.
https://www.phpbb.com/customise/db/exte ... _topics_2/
Unfortunately, this version seems to have some issues.
But this version works perfectly, try it:
https://github.com/IMC-GER/RecentTopics ... .2.15-pl10
After downloading the extension, add to the extension folder the files for our theme from here "Recent-Topics.zip":
https://mega.nz/folder/AKlSFIyS#cjxjQqLCqXJmusPgv5IoqQ
As for "Show last edit date" after reviewing there is no problem.
Isn't it as in the attached image?
These are the cases in which the modification information appears or does not appear:As a moderator you have the choice to add the reason or not. As a user if your post is the last in the topic you can edit it without leaving a reason. If it’s not the last the time, date and edit count is automatically added.
Code: Select all
if ($data_ary['post_edit_reason'] || (!$auth->acl_get('m_edit', $data_ary['forum_id']) && ($post_mode == 'edit' || $post_mode == 'edit_first_post')))
{
$data_ary['post_edit_reason'] = truncate_string($data_ary['post_edit_reason'], 255, 255, false);
$sql_data[POSTS_TABLE]['sql'] = array(
'post_edit_time' => $current_time,
'post_edit_reason' => $data_ary['post_edit_reason'],
'post_edit_user' => (int) $data_ary['post_edit_user'],
);
$sql_data[POSTS_TABLE]['stat'][] = 'post_edit_count = post_edit_count + 1';
}
else if (!$data_ary['post_edit_reason'] && $mode == 'edit' && $auth->acl_get('m_edit', $data_ary['forum_id']))
{
$sql_data[POSTS_TABLE]['sql'] = array(
'post_edit_reason' => '',
);
}
Code: Select all
$data_ary['post_edit_reason'] = truncate_string($data_ary['post_edit_reason'], 255, 255, false);
$sql_data[POSTS_TABLE]['sql'] = array(
'post_edit_time' => $current_time,
'post_edit_reason' => $data_ary['post_edit_reason'],
'post_edit_user' => (int) $data_ary['post_edit_user'],
);
$sql_data[POSTS_TABLE]['stat'][] = 'post_edit_count = post_edit_count + 1';
Thanks for the reply. Have now fixed this and it was 100%. Thank you for your work.Leenoz wrote: ↑Thu Jul 25, 2024 7:45 pm Hi CyrusG,
The review has been completed, the new extensions have been added at this link ("Similar-Topics.zip", "Topic-Image-Preview.zip")
https://mega.nz/folder/AKlSFIyS#cjxjQqLCqXJmusPgv5IoqQ
You will need to update the version. There was a missing event and it was added.
https://github.com/Leenoz-com/Zeina
After installation, make sure that you delete the cache files on your site as well as from the browser.
Regards,
Leenoz Team
If you need an extension you should make an extension request.
Code: Select all
.nav-up, .nav-down {
padding: 10px;
width: 48px;
height: 48px;
}
.nav-up {
bottom: 55px;
}
Thank you so much, we are glad you are satisfied with the service.
ucp_reset_password.html
Hi Wvnderbar,
Code: Select all
.header-section > div:last-child {
display: none;
}
template/forumlist_body.html
theme/assets/js/app.js