Read users country code

Enable Geolocation in cloudflare Cloudflare settings > Network > IP Geolocation = On Reading the value Gives you the country of the user in ISO 3166-1 Alpha 2 format.

Read More

Vertical Align

Good resources https://blog.logrocket.com/13-ways-to-vertical-center/ Classic align middle method The translateY repositions the element vertically so that it becomes centered at the 50% point itself For center aligned text: Place an image in the center of the browser window Placing text at the bottom of the screen

Read More

Get Page URI / URL

Get just the domain name $_SERVER[‘HTTP_HOST’] gives you the domain name through which the current request is being fulfilled Get site URL Get full page URL (domain name + page + any arguments) Page URL (With Arguments) Stripping Page URL Getting URL without the arguments Getting just the URL arguments Will get everything after the […]

Read More