Author Topic: hide the time zone  (Read 1064 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
hide the time zone
« on: February 22, 2024, 05:56:39 PM »
hello, how can I hide the time zone from my customers?

Offline
****
Re: hide the time zone
« Reply #1 on: February 22, 2024, 06:09:17 PM »
Not sure if you can, and why would you?

Any PHP script can query the server for time & date.
Looking at the logs would give you an estimate of the time also.

But as a suggestion/what we do.
I have all the servers set to Zulu/UTC.

But we also have servers in the US, and 3 other countries. (Shameless plug, the overseas servers are mirror server we run)

Even before that though, I set them to Zulu, because it's just easier. You might have support on Eastern Time (US), a web designer in Europe somewhere, and the client down under in Australia.

Offline
*
Re: hide the time zone
« Reply #2 on: February 22, 2024, 07:20:42 PM »
check my image please


I want to hide it because a client is telling me that this is not his time zone, but even though I try to change it everywhere, it still shows that time zone that is not from his country, so I prefer to hide it so he doesn't tell me anything, and to solve this problem they charge me for the support and it is more loss for me than gain.

Offline
*
Re: hide the time zone
« Reply #3 on: February 22, 2024, 07:22:10 PM »
Chek my image please -> https://ibb.co/fdcKkQT

check my image please


I want to hide it because a client is telling me that this is not his time zone, but even though I try to change it everywhere, it still shows that time zone that is not from his country, so I prefer to hide it so he doesn't tell me anything, and to solve this problem they charge me for the support and it is more loss for me than gain.

Offline
****
Re: hide the time zone
« Reply #4 on: February 22, 2024, 08:04:22 PM »
Chek my image please -> https://ibb.co/fdcKkQT

check my image please


I want to hide it because a client is telling me that this is not his time zone, but even though I try to change it everywhere, it still shows that time zone that is not from his country, so I prefer to hide it so he doesn't tell me anything, and to solve this problem they charge me for the support and it is more loss for me than gain.

You need to remove the ; at the front of the line to activate the change.
; acts the same as #


Offline
****
Re: hide the time zone
« Reply #5 on: February 22, 2024, 10:28:34 PM »
Also, if you really wanted to, you could create a custom theme and hide that element so it isn't displayed.

Offline
*
Re: hide the time zone
« Reply #6 on: February 23, 2024, 01:49:55 AM »
Also, if you really wanted to, you could create a custom theme and hide that element so it isn't displayed.
ohhh, how i can do it?

Offline
****
Re: hide the time zone
« Reply #7 on: February 23, 2024, 03:22:21 AM »
Via a .CSS file. But I looked at the code in developer tools and it looks as though they aren't isolating that one entry (Server Time) into a separate DIV. So you would have to hide the whole Server Information block.

Offline
*
Re: hide the time zone
« Reply #8 on: February 27, 2024, 07:36:33 PM »
how i can do it?

Offline
****
Re: hide the time zone
« Reply #9 on: February 28, 2024, 02:08:54 AM »
Via a custom .css in your custom version of the default theme:
Code: [Select]
.ibox { display: none; }

Offline
*****
Re: hide the time zone
« Reply #10 on: February 28, 2024, 11:55:22 AM »
Hello

You can do this in the following way:

You clone the current (original) cwp theme for the user
Change the name of this theme
You are looking for the template called dashboard
You delete the cell where this information is displayed
set this theme as default

With this you can delete this and anything else you want to change, the advantage of doing it with a new theme is that cwp updates will not replace your changes

I hope this information is useful to you