Page 15 of 18 FirstFirst ... 51314151617 ... LastLast
Results 141 to 150 of 177
  1. #141
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Thanks Clyde for the help. I just can not seem to get it like I want it so I will leave it alone. Looks OK to me except the model number. How do I move it above the price and inline. Also how can I move the add to cat box to the left some. Every time I try to move it, it want move for some reason.
    As I said, its a matter of moving sections of code around within the tpl_pproduct_info_display.php file.

    find the following section:

    PHP Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == and $products_model != '') or ($flag_show_product_info_weight == and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == and $products_model !='') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == 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 == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
    </ul>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->
    and move it to below this line of code:

    PHP Code:
    <!--eof Product Name--> 
    ----------------

    for the add to cart box, open your stylesheet.css

    find the following section

    #cartAdd {
    float: right;
    text-align: center;
    margin: 1em;
    border: 1px solid #000000;
    padding: 1em;
    }

    make any adjustments you feel necessary.

  2. #142
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    As I said, its a matter of moving sections of code around within the tpl_pproduct_info_display.php file.

    find the following section:

    PHP Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == and $products_model != '') or ($flag_show_product_info_weight == and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == and $products_model !='') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == 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 == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
    </ul>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->
    and move it to below this line of code:

    PHP Code:
    <!--eof Product Name--> 
    ----------------

    for the add to cart box, open your stylesheet.css

    find the following section

    #cartAdd {
    float: right;
    text-align: center;
    margin: 1em;
    border: 1px solid #000000;
    padding: 1em;
    }

    make any adjustments you feel necessary.
    Thanks Clyde. I have another question for you. If I want to center everything on my page picture, item name, model number and so on, where is the code in the style sheet to do that. I have been working on this for about an hour now and I just can not seem to be able to find the code to move it. Thank You again for your help.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #143
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Thanks Clyde. I have another question for you. If I want to center everything on my page picture, item name, model number and so on, where is the code in the style sheet to do that. I have been working on this for about an hour now and I just can not seem to be able to find the code to move it. Thank You again for your help.
    You could try installing this add-on
    www.zen-cart.com/index.php?main_page=product_contrib_info&cPath=40_62&products_id=482

  4. #144
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    I tried that add on but it mess things up worse. It doesn't shift to the middle. I don't understand whats going on. Take a look here, or Here
    Last edited by countrycharm; 30 Sep 2010 at 05:03 AM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #145
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    I tried that add on but it mess things up worse. It doesn't shift to the middle. I don't understand whats going on. Take a look here, or Here
    See your PM

  6. #146
    Join Date
    Feb 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Just installed 1.3.9h and is fine. I was trying to install Desert template but without success. Your instructions are very clear and I followed all. Uploaded the entire includes folder to server includes folder and overwrite. It will not show the template in the dropdown menu. Other templates do the same. I uploaded ver 2 of template. Any help appreciated.

    Bruce

  7. #147
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by guaranteed View Post
    Just installed 1.3.9h and is fine. I was trying to install Desert template but without success. Your instructions are very clear and I followed all. Uploaded the entire includes folder to server includes folder and overwrite. It will not show the template in the dropdown menu. Other templates do the same. I uploaded ver 2 of template. Any help appreciated.

    Bruce
    make sure the following folders are installed on your server

    includes/languages/desert_noon
    includes/languages/english/desert_noon
    includes/languages/english/extra_definitions/desert_noon
    includes/languages/english/html_includes/desert_noon
    includes/modules/desert_noon
    includes/modules/sideboxes/desert_noon
    includes/templates/desert_noon

  8. #148
    Join Date
    Nov 2010
    Location
    France
    Posts
    20
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Hi,
    Not sure if this is the right place to post this. I'm using this template with english and french language packs.
    I can't figure out how to stop new products added appearing in the New Products box on the left twice ie, once in french and then again in english. I had thought only the english version should show when displaying site in english, and then when french language was selected only french descriptions would show. It only happens in the left hand column box, not if you click to see all new products in the main centre column of the website.
    Anyone have any suggestions, I'm new to all this and haven't a clue where to look to fix this.
    Thanks.

  9. #149
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by ormcd View Post
    Hi,
    Not sure if this is the right place to post this. I'm using this template with english and french language packs.
    I can't figure out how to stop new products added appearing in the New Products box on the left twice ie, once in french and then again in english. I had thought only the english version should show when displaying site in english, and then when french language was selected only french descriptions would show. It only happens in the left hand column box, not if you click to see all new products in the main centre column of the website.
    Anyone have any suggestions, I'm new to all this and haven't a clue where to look to fix this.
    Thanks.
    Try this fix

    Just unzip the package and upload/FTP the includes folder to your server.

    ormcd_fix.zip

  10. #150
    Join Date
    Nov 2010
    Location
    France
    Posts
    20
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Thank you, so chuffed new products sidebox is now working correctly you've made my day!!

 

 
Page 15 of 18 FirstFirst ... 51314151617 ... LastLast

Similar Threads

  1. BecaBerry Template [Support Thread]
    By brandonturpin in forum Addon Templates
    Replies: 35
    Last Post: 14 Jun 2015, 09:35 AM
  2. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  3. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM
  4. Replies: 6
    Last Post: 12 Sep 2009, 09:49 AM
  5. help with custom template desert noon
    By meesh in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 19 Feb 2009, 12:00 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