Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    501
    Plugin Contributions
    0

    Default Main Page Contact number

    Hi All,

    Can someone tell me what file do I need to change for my phone number on the front page, I tried using the phone number as a search in developer's tool kit but the number did not change.

    Any help would be appreciated.

  2. #2
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,240
    Plugin Contributions
    1

    Default Re: Main Page Contact number

    Quote Originally Posted by Bruce1952 View Post
    Hi All,

    ... I tried using the phone number as a search in developer's tool kit but the number did not change...
    I'm not entirely sure what you mean by this. Did you find the number when searching and did you subsequently make a change somewhere which didn't work?

    Anyway, not knowing where that particular template gets the tel number from, I would take a stab at it being the Customer Service number in Admin > Configuration > My Store > Telephone - Customer Service. Failing that, give the results of the developer's toolkit search so we can hopefully identify its location.
    Simon

  3. #3
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,173
    Plugin Contributions
    11

    Default Re: Main Page Contact number

    If you are speaking of the 02-9011-**** ny=umber, it will probably be found in your database.

  4. #4
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,699
    Plugin Contributions
    9

    Default Re: Main Page Contact number

    your admin -> tools -> bozen theme option -> header and footer

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #5
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    501
    Plugin Contributions
    0

    Default Re: Main Page Contact number

    Quote Originally Posted by simon1066 View Post
    I'm not entirely sure what you mean by this. Did you find the number when searching and did you subsequently make a change somewhere which didn't work?

    Anyway, not knowing where that particular template gets the tel number from, I would take a stab at it being the Customer Service number in Admin > Configuration > My Store > Telephone - Customer Service. Failing that, give the results of the developer's toolkit search so we can hopefully identify its location.
    The template is m_o_z_e_n Template and I did change these two files below to the new phone number.

    define_shippinginfo.php

    define_contact_us.php

  6. #6
    Join Date
    Apr 2009
    Posts
    424
    Plugin Contributions
    2

    Default Re: Main Page Contact number

    Have you checked Admin>Configuration>My Store>Telephone Customer Services

    Also, if not there, use Admin>Tools>Developers Tool Kit and look for the telephone number 02-9011-6036
    I would use look in all files but you could try any/all of the options available.
    Mark Brittain
    http:\\innerlightcrystals.co.uk\sales\

  7. #7
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    501
    Plugin Contributions
    0

    Default Re: Main Page Contact number

    Quote Originally Posted by brittainmark View Post
    Have you checked Admin>Configuration>My Store>Telephone Customer Services

    Also, if not there, use Admin>Tools>Developers Tool Kit and look for the telephone number 02-9011-6036
    I would use look in all files but you could try any/all of the options available.
    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.

  8. #8
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,026
    Plugin Contributions
    61

    Default Re: Main Page Contact number

    It is likely embedded in the template code then. Have you tried

    Tools >> Developers Tool Kit >>

    Look-up in all files

    All Files Look-ups: Catalog
    File type: PHP only

    Click Search


    ~Melanie
    PRO-Webs, Inc. :: Recent Zen Cart Projects :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are NOT answered. You are welcome to contact us via our website for professional engagements.

  9. #9
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,699
    Plugin Contributions
    9

    Default Re: Main Page Contact number

    Quote Originally Posted by Bruce1952 View Post
    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.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  10. #10
    Join Date
    Aug 2008
    Location
    Sydney Australia
    Posts
    501
    Plugin Contributions
    0

    Default Re: Main Page Contact number

    Quote Originally Posted by mprough View Post
    It is likely embedded in the template code then. Have you tried

    Tools >> Developers Tool Kit >>

    Look-up in all files

    All Files Look-ups: Catalog
    File type: PHP only

    Click Search


    ~Melanie
    Yes tried all files as suggested and only a backup file is showing the info.

    This is the only file showing the number
    backups/##########_temp_compare_compare/includes/languages/english/html_includes/define_contact_us.php

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. What is the Main Page ID number?
    By anim8tr in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 24 May 2011, 06:07 PM
  2. Number of products on main page help
    By ABBEYJET in forum Basic Configuration
    Replies: 5
    Last Post: 2 Feb 2011, 04:40 AM
  3. Number of Categories in Row - Main Page
    By TinaS in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 8 Jan 2011, 03:26 AM
  4. Number of products on main page
    By pageblair in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 18 Jun 2010, 11:17 AM
  5. Add Order Number Contact Page
    By ryanb4614 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 28 Aug 2009, 04:51 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR