Page 65 of 326 FirstFirst ... 1555636465666775115165 ... LastLast
Results 641 to 650 of 3251
  1. #641

    Default Main page text I just cant find it

    Hi
    Bit of a newbie question, but where is the text on the very first page that starts with
    Congratulations! You have successfully

    and then the following image that starts with 'Have you got yours

    I think Im having a bad day!

  2. #642
    Join Date
    Apr 2005
    Location
    London
    Posts
    468
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Going to try the original stylesheet in a little while, in the mean time with the nav links along the top, how can I get them to align to the left. I tried the align left in the css but it only shifts them over towards the left a little bit.

    I'll let you know about the stylesheet in a little while.

    Thanks
    Pete
    FORUM:
    # a public meeting or assembly for open discussion
    #An online discussion group, where participants with common interests can exchange open messages.
    # a public facility to meet for open discussion

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

    Default Re: Main page text I just cant find it

    Quote Originally Posted by accyjohn View Post
    Hi
    Bit of a newbie question, but where is the text on the very first page that starts with
    Congratulations! You have successfully

    and then the following image that starts with 'Have you got yours

    I think Im having a bad day!
    This would have been an easy question to search within the forum or FAQ section, by the way:

    a)includes/languages/YOUR_TEMPLATE/english.php

    b)"Tools", "define pages editor", "define_main_page.php"

  4. #644
    Join Date
    Nov 2007
    Posts
    270
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi;
    I am trying to increase the space between "Description" "Model" "Short Desc" and "Price" (data, not the headings) when I display Categories. I looked in the css, but was only able to make the "description" left justified. Is it possible to specified the max. width for the description in order to give more room for the Model, Short Desc. etc?
    After a day of trying to work with Short Description add-on, I realized that it does not work with this template, but I still like to use it so I am trying to work around it.
    Tx

  5. #645
    Join Date
    Nov 2007
    Posts
    270
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    one more question..
    I would like to include * Short name: XXXX in between Model & Manufacturer

    * Model: 12345
    * Short name: XXXX
    * Manufactured by: ABC

    but after few attempts, I am no closer. I know it has to come inside the following:

    <!--bof Product details list Manufacturer for me -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList">
    <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <?php
    }
    ?>
    <!--eof Product details list -->

    Any assistance will be greatly appreciated!

  6. #646
    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 Veronika7747 View Post
    one more question..
    I would like to include * Short name: XXXX in between Model & Manufacturer

    * Model: 12345
    * Short name: XXXX
    * Manufactured by: ABC

    but after few attempts, I am no closer. I know it has to come inside the following:

    <!--bof Product details list Manufacturer for me -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList">
    <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <?php
    }
    ?>
    <!--eof Product details list -->

    Any assistance will be greatly appreciated!
    There's no reason for short description not to work on this template. Once you have all the other files in place, simply paste this where you want it to go:

    <?php
    if (PRODUCT_INFO_SHORT_DESC == 1) {
    echo '<li>' . $products_short_desc . '</li>';
    }
    ?>

    I'd paste it right before this chunk:
    Code:
    <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>

  7. #647
    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 Veronika7747 View Post
    Hi;
    I am trying to increase the space between "Description" "Model" "Short Desc" and "Price" (data, not the headings) when I display Categories. I looked in the css, but was only able to make the "description" left justified. Is it possible to specified the max. width for the description in order to give more room for the Model, Short Desc. etc?
    After a day of trying to work with Short Description add-on, I realized that it does not work with this template, but I still like to use it so I am trying to work around it.
    Tx
    Can you link me to the page you're referring to?

  8. #648
    Join Date
    Nov 2007
    Posts
    270
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Can you link me to the page you're referring to?
    Since I am having difficulties with Short Desc., the test site on ISP does not have it yet. But even when you look at:
    http://store.annron.com/index.php?ma...=index&cPath=1
    there is not much space between the long desc. and the Model.
    I just noticed that that left justify I did justifies all data (including the price). How can I left justify ONLY the long desc.?

  9. #649
    Join Date
    Nov 2007
    Posts
    270
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    There's no reason for short description not to work on this template. Once you have all the other files in place, simply paste this where you want it to go:

    <?php
    if (PRODUCT_INFO_SHORT_DESC == 1) {
    echo '<li>' . $products_short_desc . '</li>';
    }
    ?>

    I'd paste it right before this chunk:
    Code:
    <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>


    This works, all it needs is a ": "

    * Sub_Category: Magic Mazes
    * Model: MZ500B
    * Manufactured by: Lee Publication


    <?php
    if (PRODUCT_INFO_SHORT_DESC == 1) {
    echo '<li>' . TABLE_HEADING_SHORT_DESC . $products_short_desc . '</li>' ;
    }
    ?>

    but when I try to include it, I don't get any display at all, but I'll keep trying.

    Thanks!

  10. #650
    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 Veronika7747 View Post
    This works, all it needs is a ": "

    * Sub_Category: Magic Mazes
    * Model: MZ500B
    * Manufactured by: Lee Publication




    but when I try to include it, I don't get any display at all, but I'll keep trying.

    Thanks!
    <?php
    if (PRODUCT_INFO_SHORT_DESC == 1) {
    echo '<li>' . TABLE_HEADING_SHORT_DESC . $products_short_desc . ': ' . '</li>' ;
    }
    ?>

 

 

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

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