Page 1 of 3 123 LastLast
Results 1 to 10 of 23
  1. #1
    Join Date
    Jul 2006
    Posts
    2
    Plugin Contributions
    0

    Default Can someone help this newbie?

    Hi everyone! I'm new to this forum but have been running Zen since February. My husband has been the one taking care of the site but he hasn't had the time lately to devote as much attention to it as he was and now I'm trying to take over. Unfortunately, I have zero experience with this and have no idea what I'm doing and am so afraid that I'm going to mess something up. Can someone help me with a few questions?

    1 - Is there any way to add a page hit counter to the store itself? I've got several on my homepage which ranks my site with other similar sites and helps with advertising so I'd really like to have it on the store page too for those that go directly into the store. Here's my homepage so you'll see what I'm talking about. http://www.chscrapbooks.com/

    2 - When we first setup, we had the template pink in the store but when we upgraded recently it went back to brown. How do I change it back to a different color?

    3 - Also since we upgraded, there is a red bar on the very top of the store page and I can't figure out how to get rid of it - any suggestions?

    I'm sure I've got lots more questions but hopefully someone can help me out with these initially so I can at least make a few changes.

    Thanks everyone!

  2. #2
    Join Date
    Jan 2005
    Location
    Lake Havasu, AZ
    Posts
    1,149
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    Here's my shot at help for ya...

    #1 your counter you can put into the footer of your site by adding the code for it in the YOUR_TEMPLATE/common/tpl_footer.php

    #2 There are no more extra templates included in zen ( as in the older where we had classic / template default / and blue strip ). So in order to change the template you can d/l one from the contributions or create one - at least.

    #3 is an error - but I am in a hotel on dial up at the moment and I have been waiting for your page to finish loading so I can see what the warning is. Usually it's Configure.php is writeable or zc_install still exists, but like I said I am not sure which as it has taken 2 full minutes and the site still hasn't completely loaded sorry.

    Hope thats a little help at least!
    When the world gets in my face I say Have A Nice Day.
    * I DO Think and I HAVE BEEN Zenned - therefore, I AM * I donate - do you?
    Custom Templates and Zen Services CRS Designs, Inc.

  3. #3
    Join Date
    Feb 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    Thanks for your help! I'm off to try them now!

  4. #4
    Join Date
    Apr 2006
    Location
    Chiang Mai
    Posts
    405
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    a bit off topic but using a 420KB image is down right cruel to your dial-up customers...

    I'm on high-speed and it has taken several minutes to load...

    other speed stealers once the determined and perseverent customer reaches the site are category counts: admin/config/mystore - listed about half way down

    you're on the classic style sheet which you should invest doing some research on the forum regarding upgrades and the override system -- it is actually simple to change despite the martian speak you will encounter at first. You really should change that before doing any more code customizations (which are easier to do than you think).

    Another newbie suggestion is to use Firefox browser and get the Web Develop Toolkit Extension - it is very helpful.

    Also you'll need to get familiar with admin/tools/developers tool kit - it is a search tool to find words and phrases in the code so you'll know which files to make changes on

    those colors are in the CSS stylesheet - look in includes/templates and either in classic folder (where you need to copy to another folder once you learn a little more) you'll find "background-color" all over the place - but the orange you see is actually a gif image tile_back.gif - you could quickly find that in your images folder (I think that's where it is - try out the admin/tools/developer search) maybe in template images folder and look at it in a graphics program such as Fireworks... make another one in a different color call it the same thing and Wham...magic strikes again.

    you'll need an editor (I use dreamweaver) that color codes text making it easy to find and edit what you need

    MAKE BACKUPS

    did I mention MAKE BACKUP COPIES

    it actually gets easier the more patient and methodical you are willing to be... just taking a few weeks to read the forum helps a lot....

    PS: you should ask for Zencart help directed to http://www.chscrapbooks.com/store2/ not the excrutiatingly slow www.chscrapbooks.com

  5. #5
    Join Date
    Feb 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    Thanks for the tip - I didn't even think about the image for dialup users. Is there any way to put links from my homepage into my store setup so that I can eliminate the homepage?

  6. #6
    Join Date
    Feb 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    Quote Originally Posted by wasana

    Another newbie suggestion is to use Firefox browser and get the Web Develop Toolkit Extension - it is very helpful.


    you'll need an editor (I use dreamweaver) that color codes text making it easy to find and edit what you need

    MAKE BACKUPS

    did I mention MAKE BACKUP COPIES

    [/url]

    Thanks for your help! First, where do I get the web develop expansion? I have Firefox but I can't find this particular extension. How do I get this Dreamweaver and is it easy to use? And I don't have any idea how to make a backup...this sounds serious!

  7. #7
    Join Date
    Apr 2006
    Location
    Chiang Mai
    Posts
    405
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    easy (sort of ) I actually did this today...

    You don't want 'links' you want to move the store up one level in your directory. Instead of www.scapbook.com pointing to your index.html file it will use the index.php file that is included under the zencart (store2) directory.

    You can use your FTP program to "move to" the files up one level. (from httpdocs/store2/admin to httpdocs/admin etc - ie select folder, right click move to httpdocs) - USUALLY the way it works, different FTP programs have different ways of working

    important: Look in Forum FAQ - do search for 'rename' - http://www.zen-cart.com/forum/faq.ph...l&titlesonly=0 - you'll see a couple items about renaming the folder etc. Follow the instructions thouroughly - and you should practice editing files first - not a good idea for this to be your first editing adventure --again you need a text editor that color codes so you can find relevant code stuff easily (dreamweaver works)
    the two configure files show other files where to look for things. The sessions ID is changed in admin/configuration/sessions

    For example only DO NOT COPY and use (there are a couple more edits per page)...

    Code:
    define('DIR_WS_ADMIN', '/store2/admin/');
      define('DIR_WS_CATALOG', '/store2/');
      define('DIR_WS_HTTPS_ADMIN', '/store2/admin/');
      define('DIR_WS_HTTPS_CATALOG', '/store2');
     define('DIR_FS_ADMIN', '/usr/local/4admin/apache/vhosts/yoursite.com/httpdocs/store2/admin/');
    changes to
    Code:
    define('DIR_WS_ADMIN', '/admin/');
      define('DIR_WS_CATALOG', '/');
      define('DIR_WS_HTTPS_ADMIN', '/admin/');
      define('DIR_WS_HTTPS_CATALOG', '/');
    
     define('DIR_FS_ADMIN', '/usr/local/4admin/apache/vhosts/yoursite.com/httpdocs/admin/');
    this is a slightly incomplete explanation - you also need to rename your 'admin' directory to another name for security (you can search that topic)

    I had issues with image folders but that was because I was running to stores while setting up the new Zen v1.3.0.2. If you have a store1 that might cause you some heartburn. You probably will be okay with that - just BACK UP BACK UP BACK UP - and you can rename files temporarily if you want to put a file folder where another one is...maybe a little too much info...

    and do a little searching on the forum for this and related topics

    you can always repost another question after doing a little homework if this is all a little too newbie for you

    after awhile it makes sense

  8. #8
    Join Date
    Apr 2006
    Location
    Chiang Mai
    Posts
    405
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    drinking from a firehose...

    you might want to take a deep breath and step back and look at some of the forum threads about getting started and the tools you need. A slow and methodical start pays big dividends later.

    backups - just make a copy of the files... (at some point you'll need to make a backup of your database but don't worry about that now) using an FTP program to access (copy/paste/change security settings)your files on your server. Your host site has something like a control panel and file manager but they are slow and frustrating.

    I think dreamweaver is pricey - (I live in Thailand and since the gov't hasn't signed the free trade agreement about piracy rules...uhh... software ... is uhhh...cheap....) You can probably find other low-cost or free editors.

    firefox extension
    http://chrispederick.com/work/webdeveloper "Firefox/Flock Download"

    once you have the tools in place and an idea of what to do with them...

  9. #9
    Join Date
    Feb 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    Thank yoiu for the extension link, now I just have to figure out how to use it!

    Another question - where do I find this? YOUR_TEMPLATE/common/tpl_footer.php
    I don't see it anywhere.

  10. #10
    Join Date
    Apr 2006
    Location
    Chiang Mai
    Posts
    405
    Plugin Contributions
    0

    Default Re: Can someone help this newbie?

    ahhh, this is a good place to start experiencing how ZC works.

    first:
    Use the admin/tools/developerstoolkit - go to the bottom of that page, if you put in tpl_footer.php into the search box and change the dropdown menu in the middle to look for "all" - it will show you all the places that have a file with that name - you can also search for words that you might want to edit/change. Like "final step" changed to "almost done" etc.

    second:
    When you see a reference like that: YOUR_TEMPLATE/common/tpl_footer.php
    the capitalized YOUR_TEMPLATE is what you would rename your template if you were using the override system - which you need to do soon or you will have real problems during upgrades.

    Since you are using the 'classic' template you're going to find this file in either the includes/templates/classic/common or includes/templates/template_default/common; but eventually you should find it in includes/templates/template_ scrapbooks/common

    glad I can help, it took me awhile to wade through this stuff too

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Can someone help, has this been done before. help please
    By kldezine in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 28 Apr 2009, 03:50 PM
  2. Can someone help me figure out how to do this...
    By MCanes in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 15 Sep 2007, 05:54 AM
  3. i like this layout, can someone help!!
    By corbo in forum General Questions
    Replies: 0
    Last Post: 8 Aug 2007, 03:52 AM

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