Page 1 of 2 12 LastLast
Results 1 to 10 of 3244

Hybrid View

  1. #1
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    i need a hep here. When I turn off: Categories - always show on main page, in layout seetings, instead of my welcome message, there is HEADING-TITLE, that is always showing. i tried different ways to edit it out from the index.php, but it will not go away.
    You can see my website now at www.touchstonemedia.com, you will see what I mean.

    thanks,

    Isvara dasa

  2. #2
    Join Date
    Aug 2006
    Location
    West Virginia
    Posts
    321
    Plugin Contributions
    1

    Default Re: Cherry Zen Template Support Thread

    I think and im not sure ,you just delete whats in between the ' whatever text was there' leave the ' ' there dont delete the whole line.

  3. #3
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    i need a hep here. When I turn off: Categories - always show on main page, in layout seetings, instead of my welcome message, there is HEADING-TITLE, that is always showing. i tried different ways to edit it out from the index.php, but it will not go away.
    You can see my website now at www.touchstonemedia.com, you will see what I mean.

    thanks,

    Isvara dasa
    The bottom of your index.php should look like this (this is blank):

    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', '');
    } elseif ($category_depth == 'nested') {
    // This section deals with displaying a subcategory
    /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', '');
    }
    ?>

  4. #4
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    The bottom of your index.php should look like this (this is blank):

    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', '');
    } elseif ($category_depth == 'nested') {
    // This section deals with displaying a subcategory
    /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', '');
    }
    ?>
    I followed this direction, still the same problem. When I turned on the Category on Main Menu, the welcome messages shows, but when I turned it off, the message will not show but instead this "HEADING_TITLE" will show. You can see it on my site now.

    Can you please do step by step guideline on how to solve the problem, such as actual demonstration of it. I have played with the codes above, but nothing works.

    thanks,

    Isvara

  5. #5
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    I followed this direction, still the same problem. When I turned on the Category on Main Menu, the welcome messages shows, but when I turned it off, the message will not show but instead this "HEADING_TITLE" will show. You can see it on my site now.

    Can you please do step by step guideline on how to solve the problem, such as actual demonstration of it. I have played with the codes above, but nothing works.

    thanks,

    Isvara
    If HEADING_TITLE is showing, that means there is a problem in the language file.
    Around line 32 in includes/languages/english/YOUR_TEMPLATE/index.php, you need another like this:

    define('HEADING_TITLE', 'Available Products');
    if you want it blank, it should be this:

    define('HEADING_TITLE', '');

    My advice to you is to reload the original. Also, make sure you are changing the right file (are you changing the one inside your template folder, or the one inside english/)?

  6. #6
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    If HEADING_TITLE is showing, that means there is a problem in the language file.
    Around line 32 in includes/languages/english/YOUR_TEMPLATE/index.php, you need another like this:

    define('HEADING_TITLE', 'Available Products');
    if you want it blank, it should be this:

    define('HEADING_TITLE', '');

    My advice to you is to reload the original. Also, make sure you are changing the right file (are you changing the one inside your template folder, or the one inside english/)?
    I deleted the one inside the english folder, using only from the template folder.

  7. #7
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    I deleted the one inside the english folder, using only from the template folder.
    I followed your earlier advice. I reload a fresh index.php file and that fixed the problem.
    Thanks for your advice. You have been helpful. I'll send a donation as soon as I start making money on the site.
    One question, how do I change the color of the product price on the main page. I can't seem to locate it on the css file.

    thanks,

    Isvara dasa.

  8. #8
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    I followed your earlier advice. I reload a fresh index.php file and that fixed the problem.
    Thanks for your advice. You have been helpful. I'll send a donation as soon as I start making money on the site.
    One question, how do I change the color of the product price on the main page. I can't seem to locate it on the css file.

    thanks,

    Isvara dasa.
    Well, is not designed to be changed by default. You will need to make some changes in a few files. There is currently no style surrounding the price, so if you want to style it, you'll need to add a <div> around that section.

    Open up

    includes/modules/YOUR_TEMPLATE/new_products.php,
    includes/modules/YOUR_TEMPLATE/featured_products.php,
    includes/modules/YOUR_TEMPLATE/specials_index.php

    Find this piece of code:

    '</a><br />' . $products_price

    change ONLY THAT to this (make sure you're replacing the exact code above):

    '</a><br /><span class="indexPrice">' . $products_price . '</span>'

    Then you'll be able to style it in the css like this:

    .indexPrice {color:#990000;}

  9. #9
    Join Date
    Aug 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi everyone. I am trying to set up my first store. How do I remove the zen cart e-book from the center column. Also how do you remove the Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution. Simple terms would be best since I am quite new to zen.

  10. #10
    Join Date
    Sep 2006
    Posts
    122
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by tj4florida1 View Post
    Hi everyone. I am trying to set up my first store. How do I remove the zen cart e-book from the center column. Also how do you remove the Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution. Simple terms would be best since I am quite new to zen.

    Hi,

    http://www.zen-cart.com/forum/showth...lations+remove

    that will answer your question. There are many topics on this type "Congradulations remove" in the search bar and you will see many threads.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

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