inherit
269306
0
Sept 12, 2024 7:57:13 GMT -8
pw121
17
April 2024
pw121
|
Post by pw121 on Sept 8, 2024 3:56:01 GMT -8
I want to create a site with so many custom pages for each game I can think of. Is there any limit to the amount of custom pages? When I say custom pages, I mean Admin->Structure->Custom Pages. Thanks in advance!
|
|
#eb7100
1480
0
Member is Online
1
Nov 27, 2024 6:25:30 GMT -8
Craig
209,200
September 2001
cmdynasty
|
Post by Craig on Sept 8, 2024 13:30:17 GMT -8
Hi Whilst there is a limit ( i can't recall the exact number ), it isn't one that is realistically going to ever be met. How many were you thinking about creating?
|
|
inherit
269306
0
Sept 12, 2024 7:57:13 GMT -8
pw121
17
April 2024
pw121
|
Post by pw121 on Sept 8, 2024 13:37:39 GMT -8
Hi Whilst there is a limit ( i can't recall the exact number ), it isn't one that is realistically going to ever be met. How many were you thinking about creating? I was thinking of making it so people on my forum could register their “game project” through a form, and I would accept it if it is good enough. So perhaps, quite a lot.
|
|
#eb7100
1480
0
Member is Online
1
Nov 27, 2024 6:25:30 GMT -8
Craig
209,200
September 2001
cmdynasty
|
Post by Craig on Sept 8, 2024 14:29:39 GMT -8
Hi Whilst there is a limit ( i can't recall the exact number ), it isn't one that is realistically going to ever be met. How many were you thinking about creating? I was thinking of making it so people on my forum could register their “game project” through a form, and I would accept it if it is good enough. So perhaps, quite a lot. That should be fine to do that. I can not imagine you would meet the limit
|
|
inherit
269306
0
Sept 12, 2024 7:57:13 GMT -8
pw121
17
April 2024
pw121
|
Post by pw121 on Sept 8, 2024 23:49:23 GMT -8
I was thinking of making it so people on my forum could register their “game project” through a form, and I would accept it if it is good enough. So perhaps, quite a lot. That should be fine to do that. I can not imagine you would meet the limit But should I ever be worried about a limit within the next 5 years?
|
|
#eb7100
1480
0
Member is Online
1
Nov 27, 2024 6:25:30 GMT -8
Craig
209,200
September 2001
cmdynasty
|
Post by Craig on Sept 9, 2024 0:48:12 GMT -8
That should be fine to do that. I can not imagine you would meet the limit But should I ever be worried about a limit within the next 5 years? I wouldn't say so. I will tag Scott who may be able to provide a more definite number for you, but the limit has never been met
|
|
inherit
269306
0
Sept 12, 2024 7:57:13 GMT -8
pw121
17
April 2024
pw121
|
Post by pw121 on Sept 9, 2024 1:18:18 GMT -8
But should I ever be worried about a limit within the next 5 years? I wouldn't say so. I will tag Scott who may be able to provide a more definite number for you, but the limit has never been met Also, is there a way to find the current time in a custom page. Just a quick question. Like is there an insert block?
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,527
August 2015
socalso
|
Post by Scott on Sept 9, 2024 7:10:30 GMT -8
pw121 - you shouldn't have to worry about the number of custom pages. Do you want to display the current time always on a custom page? If so, a simple way is this: Add this script to the page: <script> // Get current date and time var now = new Date(); var datetime = now.toLocaleString();
// Insert date and time into HTML document.getElementById("datetime").innerHTML = datetime; </script> Then place this code where you want the date/time to display: <p id="datetime"></p>
|
|
inherit
269306
0
Sept 12, 2024 7:57:13 GMT -8
pw121
17
April 2024
pw121
|
Post by pw121 on Sept 9, 2024 14:17:46 GMT -8
pw121 - you shouldn't have to worry about the number of custom pages. Do you want to display the current time always on a custom page? If so, a simple way is this: Add this script to the page: <script> // Get current date and time var now = new Date(); var datetime = now.toLocaleString();
// Insert date and time into HTML document.getElementById("datetime").innerHTML = datetime; </script> Then place this code where you want the date/time to display: <p id="datetime"></p> Sorry, also for the forum wrapper. So that in every page, people can see the current time.
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,527
August 2015
socalso
|
Post by Scott on Sept 9, 2024 14:31:19 GMT -8
|
|