3.1 & 3.2 Extensions Database 3.1 / 3.2phpBB Countdown

<span class="qte-attr qte_31_32-qte">3.1.x &amp; 3.2.x</span>
User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

How can i revert to a normal text?
изображение_2025-02-15_123029646.png
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
Feed like a disease
And bring them to their knees
They'll pay for their deceit

User avatar

Sniper_E
VIP
VIP
Posts: 1158
Joined: 14 Oct 2014, 19:01
    Windows 10 Firefox

Re: phpBB Countdown

Post by Sniper_E »

The font type is pulled in from: countdown/styles/prosilver/template/event/overall_header_head_append.html

Code: Select all

<link href="https://fonts.googleapis.com/css?family=Montez" rel="stylesheet">
Edit: countdown/styles/prosilver/theme/countdown.css

Code: Select all

/* .timecount #time {
	font-family: Montez;
} */
Use those /* */ tags to comment out the use of that font.

Or just change that font name in both files to use the font you like.
You can select a font from All Availible Google Fonts
Image
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!™

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

Is that correct?

Code: Select all

.timecount {
	min-height: 26px;
	color: #AA0000;
	font-size: 22px;
	text-align: center;
	margin-top: 4px;
	padding-top: 4px;
}

./* .timecount #time {
	font-family: Montez;
} */
}

.timecount .fireworks {
	background-image: url(images/ny-fireworks.gif);
	background-size: cover;
}

.count-time {
	display: inline-block;
	width: 26px;
	text-align: center;
}

span.cd-time {
	color: #105289;
}

@media (max-width: 600px) {
	.timecount img,
    span.cd-time.text {
		display: none;
	}
	.timecount {
		font-size: 18px;
	}
}
How can i fix this
изображение_2025-02-15_232217664.png
see how min, days are up side
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Sniper_E
VIP
VIP
Posts: 1158
Joined: 14 Oct 2014, 19:01
    Windows 10 Chrome

Re: phpBB Countdown

Post by Sniper_E »

No that is not correct.

Code: Select all

./* .timecount #time {
	font-family: Montez;
} */
}
Change to

Code: Select all

/* .timecount #time {
	font-family: Montez;
} */
And the numbers, I've never seen that before.

Code: Select all

.count-time {
	display: inline-block;
	width: 26px;
	text-align: center;
}
I don't think it's loading that css. Fix the top part first then check those numbers.

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

I did but nothing changes
изображение_2025-02-16_174424735.png
Screenshot 2025-02-16 174311.png
countdown.css

Code: Select all

.timecount {
	min-height: 26px;
	color: #AA0000;
	font-size: 22px;
	text-align: center;
	margin-top: 4px;
	padding-top: 4px;
}

/* .timecount #time {
	font-family: Montez;
} */
}

.timecount .fireworks {
	background-image: url(images/ny-fireworks.gif);
	background-size: cover;
}

.count-time {
	display: inline-block;
	width: 26px;
	text-align: center;
}

span.cd-time {
	color: #105289;
}

@media (max-width: 600px) {
	.timecount img,
    span.cd-time.text {
		display: none;
	}
	.timecount {
		font-size: 18px;
	}
}
overall_header_head_append.html

Code: Select all

<link href="https://fonts.googleapis.com/css?family=Montez" rel="stylesheet">
{% INCLUDECSS '@dmzx_countdown/countdown.css' %}
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Sniper_E
VIP
VIP
Posts: 1158
Joined: 14 Oct 2014, 19:01
    Windows 10 Chrome

Re: phpBB Countdown

Post by Sniper_E »

Try this in your countdown.css

Code: Select all

.timecount {
	min-height: 26px;
	color: #AA0000;
	font-size: 15px;
	text-align: center;
	margin-top: 4px;
	padding-top: 4px;
}

.timecount #time {
	font-family: Verdana, Helvetica, Arial, sans-serif;
}

.timecount .fireworks {
	background-image: url(images/ny-fireworks.gif);
	background-size: cover;
}

.count-time {
	display: inline-block;
	width: 30px;
	text-align: center;
}

span.cd-time {
	color: #105289;
}

@media (max-width: 600px) {
	.timecount img,
    span.cd-time.text {
		display: none;
	}
	.timecount {
		font-size: 18px;
	}
}
The font-size had to change for the regular fonts, and the width. I pulled those fonts out of prosilver's common.css

You have to adjust the font-size and the width to accommodate the font you choose to use.
.timecount { font-size: 15px; } and the .count-time { width: 30px; }

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

Is this ext avalible for higher version of php?
i update my board
i thought problem with number was from board vers.
77ad6cca-c70c-4bec-b07c-323eb7eddb61.jpg
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Sniper_E
VIP
VIP
Posts: 1158
Joined: 14 Oct 2014, 19:01
    Windows 10 Chrome

Re: phpBB Countdown

Post by Sniper_E »

ivailo95 wrote: 16 Feb 2025, 21:33 I thought problem with number was from board vers.
No, your problem was with the different font you were using and not adjusting the font-size and width for it like I stated above.
Don't bring new problems into your issue.

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

Sniper_E wrote: 16 Feb 2025, 21:39
ivailo95 wrote: 16 Feb 2025, 21:33 I thought problem with number was from board vers.
No, your problem was with the different font you were using and not adjusting the font-size and width for it like I stated above.
Don't bring new problems into your issue.
it's too late..

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

PHPBB countdown doesnt appear in extension list to enable it
is avalible for 3.3.14 board vers?

User avatar

ssl
Users
Users
Posts: 138
Joined: 19 Aug 2020, 12:54
    Mac OS X Firefox

Re: phpBB Countdown

Post by ssl »

ivailo95 wrote: 17 Feb 2025, 10:45 is avalible for 3.3.14 board vers?
Yes of course
After extracting the zip file you have to send the dmzx folder on the server, in the /ext directory, then you find the extension to activate in the ACP
phpBB: 3.3.15 | PHP: 8.4
[Some French translation of extensions]

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

ssl wrote: 17 Feb 2025, 11:01
ivailo95 wrote: 17 Feb 2025, 10:45 is avalible for 3.3.14 board vers?
Yes of course
After extracting the zip file you have to send the dmzx folder on the server, in the /ext directory, then you find the extension to activate in the ACP
I know that
i tried to enable it manually with this code
but doesnt work

Code: Select all

https://palqk.eu/adm/index.php?sid=883a5207a7d936f4ff24e1f9508a433c&mode=main&action=enable_pre&ext_name=dmzx%2Fcountdown
изображение_2025-02-17_133518663.png
изображение_2025-02-17_133547732.png
77ad6cca-c70c-4bec-b07c-323eb7eddb61.jpg
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

Sniper_E
VIP
VIP
Posts: 1158
Joined: 14 Oct 2014, 19:01
    Windows 10 Chrome

Re: phpBB Countdown

Post by Sniper_E »

This is indeed the way a lot of admins add an ext to their site. You said you know this.
ssl wrote: 17 Feb 2025, 11:01 After extracting the zip file you have to send the dmzx folder on the server, in the /ext directory, then you find the extension to activate in the ACP
What you probably don't know that if you have Extension Manager Plus extension installed,

then the disabled extensions will not show in the Manage extensions list, unless data has not been deleted.

You should install Upload extensions so you can upload any extension's .zip file and enable it. And be Done!

When you click Upload extensions select the Extensions Manager link.
Image

In there it will show you all of your extensions including the ones disabled. You can enable or disable any extension there.
Image

I have never heard of someone manually enabling an extension using File Manager. Stop with that nonsense. :guns:

You can also disable Extension Manager Plus extension and all of your disabled extensions will show in the Manage extensions list.

User avatar

ivailo95
Users
Users
Posts: 918
Joined: 02 Feb 2018, 12:04
    Windows 10 Opera

Re: phpBB Countdown

Post by ivailo95 »

But i don't use Upload extensions or Extension Manager Plus on this board palqk.eu
This is my list of extensions i use
изображение_2025-02-18_114921607.png
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.

User avatar

ssl
Users
Users
Posts: 138
Joined: 19 Aug 2020, 12:54
    Mac OS X Firefox

Re: phpBB Countdown

Post by ssl »

If the extension is sent to the right place on the server but it does not appear in the ACP to activate it, you must think about an incompatibility with another extension.
Try to disable your existing extensions, and check that you can enable phpBB Countdown. If you can enable it as the only extension, you must proceed by elimination to find the incompatible extension by reactivating them one by one.

EDIT
Take the opportunity to update your existing extensions.

Post Reply Previous topicNext topic