[RC] Zeina - phpBB 3.3.13

For style authors to post and receive feedback on 3.3.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
User avatar
dbrewood
Registered User
Posts: 516
Joined: Tue Feb 09, 2021 9:35 am
Name: Daron Brewood

Re: [RC] Zeina theme for phpBB 3.3.12

Post by dbrewood »

Does this mean that we all need to update our themes?
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

dbrewood wrote: Thu Jul 25, 2024 9:05 pm Does this mean that we all need to update our themes?
Hi dbrewood,
I don't think you'll need any updates, it was a missing event and the "Theme Image Preview" extension was used for it.
If you intend to use this extension, you can update.
Thanks
Donell
Registered User
Posts: 2
Joined: Tue Jul 23, 2024 9:45 pm

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Donell »

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?
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.

In the post reply you left me this (I was mentioning to you that I don't get the edit date of the post):
Image

However, nothing like that appears to me, even with the checked option of “Show edit date” set to YES:
Image

Instead, I have this in my posts (no edit date):
Image

Is it possible for you to help me determine what is causing this not to display? I downloaded the latest version available in the panel. It is important for me to see the editing of the users in their posts.

Thank you very much, I remain attentive.
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

Hi Donell,
After reviewing this issue is also exist in the original theme "prosilver", it has nothing to do with the theme.

We also found this topic talking about the same problem:
viewtopic.php?t=2617736

This text is quoted from an answer from a member of the support team (From the topic attached above):
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.
These are the cases in which the modification information appears or does not appear:
  • If edit reason is given always display edit info
  • If editing last post then display no edit info
  • If m_edit (Moderator edit) permission then display no edit info
  • If normal edit display edit info
You can suggest to the phpbb development team to add this as an option in the control panel in the future.

However, there is a solution but we do not recommend it.

Open the file "includes/functions_posting.php" and find this code:

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'	=> '',
	);
}
Replace it with this:

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';
Regards,
Leenoz Team
User avatar
CyrusG
Registered User
Posts: 47
Joined: Mon Jan 28, 2019 11:58 am
Location: London

Re: [RC] Zeina theme for phpBB 3.3.12

Post by CyrusG »

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
Thanks for the reply. Have now fixed this and it was 100%. Thank you for your work.
User avatar
CyrusG
Registered User
Posts: 47
Joined: Mon Jan 28, 2019 11:58 am
Location: London

Re: [RC] Zeina theme for phpBB 3.3.12

Post by CyrusG »

Hi, do you have any tips or solutions for a Scroll Page extension? I have tried all that are under phpbb but the extension barely shows. Right now I'm using phpbbes/scrolltoupdown
User avatar
Mick
Support Team Member
Support Team Member
Posts: 26832
Joined: Fri Aug 29, 2008 9:49 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Mick »

CyrusG wrote: Sat Jul 27, 2024 4:32 pmdo you have any tips or solutions for a Scroll Page extension?
If you need an extension you should make an extension request.
  • "The more connected we get the more alone we become” - Kyle Broflovski© 🇬🇧
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

Hi CyrusG,
If you mean that there is no extension that suits you, unfortunately we do not create extensions currently, and this feature is already available in the pro version. You can request the creation of an extension in this forum viewforum.php?f=496 as Mick explained above.

If you mean that the buttons are small in size, you can add this code in the "overall_header" file.

Code: Select all

.nav-up, .nav-down {
    padding: 10px;
    width: 48px;
    height: 48px;
}
.nav-up {
   bottom: 55px;
}
Regards
Leenoz Team
User avatar
dbrewood
Registered User
Posts: 516
Joined: Tue Feb 09, 2021 9:35 am
Name: Daron Brewood

Re: [RC] Zeina theme for phpBB 3.3.12

Post by dbrewood »

I've got to say it's well worth investing in the Pro version. The support is completely awesome!
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

dbrewood wrote: Sat Jul 27, 2024 6:17 pm I've got to say it's well worth investing in the Pro version. The support is completely awesome!
Thank you so much, we are glad you are satisfied with the service. :D
User avatar
dbrewood
Registered User
Posts: 516
Joined: Tue Feb 09, 2021 9:35 am
Name: Daron Brewood

Re: [RC] Zeina theme for phpBB 3.3.12

Post by dbrewood »

Very happy indeed. The best support I’ve ever had on a theme. Your assistance to fine tune the theme had been invaluable.
That along with the ‘Pro’ features make it a joy to work with and use.
Many tweaks I used to have to apply to a theme are not needed and I’ve been able to remove a lot of extensions I used previously.
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

Hi,
Zeina theme has been updated.

Reasons:
Fixed an issue where there was no submit button on the password reset page.

Modified files:
ucp_reset_password.html

Thanks Donell for reporting.

Regards
Leenoz Team
Wvnderbar
Registered User
Posts: 5
Joined: Fri Jul 28, 2023 11:25 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Wvnderbar »

Awesome Theme, instantly went Pro.

Is there an easy way to remove the Boardtitle/Threadtitle in the header?
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

Wvnderbar wrote: Mon Aug 19, 2024 1:59 pm Awesome Theme, instantly went Pro.

Is there an easy way to remove the Boardtitle/Threadtitle in the header?
Hi Wvnderbar,
We're honored by your confidence. :D
You can use CSS codes

Add this code in your custom CSS

Code: Select all

.header-section > div:last-child {
    display: none;
}
Kind regards,
Leenoz Team
Leenoz
Registered User
Posts: 87
Joined: Sat Nov 14, 2020 7:27 am

Re: [RC] Zeina theme for phpBB 3.3.12

Post by Leenoz »

Hi there,
Zeina theme has been updated.

Reasons:
Fixed the issue of the login dialog box disappearing on the mobile screen.
Fixed the formatting issue when leaving the description empty in the forum list.

Modified files:
template/forumlist_body.html
theme/assets/js/app.js

How to update:
  • Overwrite old files with new ones.
  • Delete cache files.
  • Make sure to clean your browser of cached files as well.
* Note: Any modifications you made to the template manually will be erased. Make sure to take a backup of the files before updating.

Thanks Deiu for reporting.
The update includes both the Pro and free versions.

Kind regards,
Leenoz Team

Return to “[3.3.x] Styles in Development”