Page 14 of 18 FirstFirst ... 41213141516 ... LastLast
Results 131 to 140 of 177
  1. #131
    Join Date
    Jul 2010
    Posts
    2
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    clydejones, first of all thank you. You work has inspired many ideas for me. I have played with a few carts to help remind me of some of the code dynamics, but now i'm ready to get serious.

    I would like to know if the code for the tabbed options across the top of Desert Noon can be transfered to a custom or other template like my own. If so, what files need to be changed? Referring specifically to the below:



    Thanks for your time.

  2. #132
    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 kris4802 View Post
    clydejones, first of all thank you. You work has inspired many ideas for me. I have played with a few carts to help remind me of some of the code dynamics, but now i'm ready to get serious.

    I would like to know if the code for the tabbed options across the top of Desert Noon can be transfered to a custom or other template like my own. If so, what files need to be changed? Referring specifically to the below:



    Thanks for your time.
    The files in question would be:

    includes/templates/desert_noon/common/tpl_header.php
    includes/templates/desert_noon/css/stylesheet.css
    includes/templates/desert_noon/images/tableft.gif
    includes/templates/desert_noon/images/tabright.gif

  3. #133
    Join Date
    Jul 2010
    Posts
    2
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    The files in question would be:

    includes/templates/desert_noon/common/tpl_header.php
    includes/templates/desert_noon/css/stylesheet.css
    includes/templates/desert_noon/images/tableft.gif
    includes/templates/desert_noon/images/tabright.gif
    Great! This will give me something to play with. I almost forgot my love for a technical challenge. Your prompt reply is incredible.

    Best Regards!

  4. #134
    Join Date
    May 2008
    Posts
    188
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Just installed this on a test fresh 1.3.9 install. My question / query is the search button on the top right in the header is showing up as the default browser search button rather than the gif that is intended to be with the template. The test site is at knotsewcraftyDOTorg. The template displayed on (sorry, site offline) shows a custom search gif in the top right. Just wondering why it's not present on this site (have verified that the gif file itself is there)

    Cheers

  5. #135
    Join Date
    May 2008
    Posts
    188
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Sorry quick edit to the above post: the url is as above /index.php - the current default on the site is a holding page.

  6. #136
    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 PatF View Post
    Just installed this on a test fresh 1.3.9 install. My question / query is the search button on the top right in the header is showing up as the default browser search button rather than the gif that is intended to be with the template. The test site is at knotsewcraftyDOTorg. The template displayed on (sorry, site offline) shows a custom search gif in the top right. Just wondering why it's not present on this site (have verified that the gif file itself is there)

    Cheers
    oen includes/templates/desert_noon/sideboxes/tpl_search_header.php

    find the following section of code:
    PHP Code:
      if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes') {
        
    $content .= zen_draw_input_field('keyword''''size="6" maxlength="30" style="width: 100px" value="' HEADER_SEARCH_DEFAULT_TEXT '" onfocus="if (this.value == \'' HEADER_SEARCH_DEFAULT_TEXT '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' HEADER_SEARCH_DEFAULT_TEXT '\';"') . ' ' zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON);
      } else {
        
    $content .= zen_draw_input_field('keyword''''size="6" maxlength="30" style="width: 100px" value="' HEADER_SEARCH_DEFAULT_TEXT '" onfocus="if (this.value == \'' HEADER_SEARCH_DEFAULT_TEXT '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' HEADER_SEARCH_DEFAULT_TEXT '\';"') . '&nbsp;<input type="submit" value="' HEADER_SEARCH_BUTTON '" style="width: 45px" />';
      } 
    And replace it with the following:
    PHP Code:
      if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes') {
        
    $content .= zen_draw_input_field('keyword''''size="6" maxlength="30" style="width: 100px" value="' HEADER_SEARCH_DEFAULT_TEXT '" onfocus="if (this.value == \'' HEADER_SEARCH_DEFAULT_TEXT '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' HEADER_SEARCH_DEFAULT_TEXT '\';"') . '&nbsp;<input type="submit" value="' HEADER_SEARCH_BUTTON '" style="width: 45px" />';
      } else {
        
    $content .= zen_draw_input_field('keyword''''size="6" maxlength="30" style="width: 100px" value="' HEADER_SEARCH_DEFAULT_TEXT '" onfocus="if (this.value == \'' HEADER_SEARCH_DEFAULT_TEXT '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' HEADER_SEARCH_DEFAULT_TEXT '\';"') . '&nbsp;' zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON);
      } 

  7. #137
    Join Date
    May 2008
    Posts
    188
    Plugin Contributions
    0

    Default Re: Desert Noon Template Support Thread

    Thanks very much for the speedy response Clyde.

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

    Default Re: Desert Noon Template Support Thread

    Hi Clyde I just updated my other store to zen-cart-v1.3.9f and using your desert noon template. Great template by the way. My question to you is this. On the product info page how do I move the products name, price, model number, and add to cart beside the picture about half way up. Thank you in advance. One more thing on the main page how can I center the about us link
    Last edited by countrycharm; 29 Sep 2010 at 02:46 AM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  9. #139
    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
    Hi Clyde I just updated my other store to zen-cart-v1.3.9f and using your desert noon template. Great template by the way. My question to you is this. On the product info page how do I move the products name, price, model number, and add to cart beside the picture about half way up. Thank you in advance. One more thing on the main page how can I center the about us link
    You'll need to open includes/templates/template_default/templates/product_info_display.php

    you can move things around to get the look you want.

    after making your edits save the file to includes/templates/desert_noon/templates/product_info_display.php

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

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    You'll need to open includes/templates/template_default/templates/product_info_display.php

    you can move things around to get the look you want.

    after making your edits save the file to includes/templates/desert_noon/templates/product_info_display.php
    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.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

 

 
Page 14 of 18 FirstFirst ... 41213141516 ... 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