Log in

View Full Version : How Do I add a phone number to the header



sanjalisharma89
10-16-2017, 06:55 AM
Hello folks,

I want to Add phone number to top right hand side of main header ??

Ritika gosh
10-20-2017, 03:04 AM
This is what I did in Numbers 3.5.2

Format/Cell/Data format/create custom format/name it "phone number"/custom format ###-###-####/OK/
Then
Choose phone number from drop down/type your number

mobilepriceshop
10-21-2017, 05:04 PM
Hello Everyone,
I’m trying to place a telephone number and small telephone icon to show on the right hand side of my website just above the site search bar in the sites header but can’t find how to do it?
I assume, I need to add some code to the header.php file, I’m using the latest version of Abundance.
Please can you help with the codeI I could use to get it to work?

pavani25
11-08-2017, 05:04 PM
If it is a bootstrap framework then you can have dedicated classes to move it a corner and show in a nice way. Some of the WordPress theme are also putting this option I'm the header.

BiestaGetse
01-28-2021, 08:02 AM
Thanks for infornations

ALtsMagent
01-28-2021, 08:05 AM
I had the same problem, and I tried to change settings on my phone, but unfortunately, I had no success. Maybe there are different settings and possibilities for different phones. So, what is possible in one model is impossible in yours. Anyway, I would like to share with you a useful service that can help to recognize all the unknown numbers that are calling you https://www.sccatl.org/areacodebystate. Indeed, when you don't know who is the caller you can find him with the help of this site. It is, really very convenient and fast.

AlanMcLean
03-05-2021, 04:50 AM
It's not the least bit difficult, is it?

chrisbarett
03-05-2021, 06:16 AM
Of course there are such services, but behind it is a lot of work and development, so they are mostly paid. I have used several applications for this purpose, but they all collected too much personal information. Even when I needed to find out information about Phone Area Codes (https://www.livesupportrhino.com/5xx-area-code), there was too much unnecessary information. It's a good thing that I recently managed to find a service that values the privacy of its customers. I heard frequent complaints that tracking number information often interfered with privacy

netpoint.system
03-08-2021, 04:17 AM
Dont forget to make it active I mean when someone opens your website on mobile its worth to do that this way

<a href="tel:+48000000000">+48 000 000 000</a> then he will be able to click on this and call at once without need of remember the number and then type it.

Ritika gosh
10-31-2022, 08:22 AM
Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. It is a very common error to read code with include, or require, functions, or another file access function, and have spaces or empty lines that are output before header() is called. The same problem exists when using a single PHP/HTML file.

<html>
<?php
/* This will give an error. Note the output
* above, which is before the header() call */
header('Location: http://www.example.com/');
exit;
?>