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:
http://i26.photobucket.com/albums/c1...DesertNoon.jpg
Thanks for your time.
Re: Desert Noon Template Support Thread
Quote:
Originally Posted by
kris4802
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:
http://i26.photobucket.com/albums/c1...DesertNoon.jpg
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
Re: Desert Noon Template Support Thread
Quote:
Originally Posted by
clydejones
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!
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
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.
Re: Desert Noon Template Support Thread
Quote:
Originally Posted by
PatF
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 . '\';"') . ' <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 . '\';"') . ' <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 . '\';"') . ' ' . zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON);
}
Re: Desert Noon Template Support Thread
Thanks very much for the speedy response Clyde. :clap:
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
Re: Desert Noon Template Support Thread
Quote:
Originally Posted by
countrycharm
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
Re: Desert Noon Template Support Thread
Quote:
Originally Posted by
clydejones
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.