
Originally Posted by
Bruce1952
Hi,
Have tried all that you suggested and not getting results for the 02-9011-6036.
Surely someone should know where to look, as all I am getting is dead ends at present.
bruce,
i know where to look; i even pointed you in the correct place in this post.
in trying what i recommended, it seems that the template you are using has a problem with saving the data, and in fact does not save it, and generates no logs. at least that is what is happening on my dev box that uses said template.
please try and confirm for yourself.
there is a reason why ZC has some issue with this template and its authors or something... i do not know the history.
the developers tools are of no value for your problem. it looks like you will need to use mysql; and the tool that most people use is phpmyadmin to look at your database. someone else can help you with that if you need it; they can also help you if you have a database prefix.
here is the sql. please replace the `b` in bozen with a `m`. and the phone number with the number you want.
Code:
SELECT * from bozen;
// this should return 1 record.
UPDATE bozen SET
`phone_support` = '00-99909-9990',
WHERE `id` = '1';
// if that does not work, you can try to update the field `call_us`
UPDATE bozen SET
`call_us` = '00-99909-9990',
WHERE `id` = '1';
please confirm that your dead end has now been opened.
best.