Can you post the contents of:
includes/languages/english/rustic/header.php
Printable View
Thank you!:blush:Quote:
<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: header.php 2940 2006-02-02 04:29:05Z drbyte $
*/
// header text in includes/header.php
define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
define('HEADER_TITLE_CHECKOUT', 'Checkout');
define('HEADER_TITLE_TOP', 'Top');
define('HEADER_TITLE_CATALOG', 'Home');
define('HEADER_TITLE_LOGOFF', 'Log Out');
define('HEADER_TITLE_LOGIN', 'Log In');
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Integrity Mountain Custom Homes');
define('HEADER_SALES_TEXT', '<strong>Custom Homes</strong>');
define('HEADER_LOGO_WIDTH', ' ');
define('HEADER_LOGO_HEIGHT', ' ');
define('HEADER_LOGO_IMAGE', 'logo.gif');
// header Search Button/Box Search Button
define('HEADER_SEARCH_BUTTON','Search');
define('HEADER_SEARCH_DEFAULT_TEXT', 'Enter search keywords here');
?>
You've apparently deleted several lines of code from this file.
Add the highlighted portion and that will correct the problem.
You should also add the height and width for your logo.gif
Code:<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: header.php 2940 2006-02-02 04:29:05Z drbyte $
*/
// header text in includes/header.php
define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
define('HEADER_TITLE_CHECKOUT', 'Checkout');
define('HEADER_TITLE_TOP', 'Top');
define('HEADER_TITLE_CATALOG', 'Home');
define('HEADER_TITLE_LOGOFF', 'Log Out');
define('HEADER_TITLE_LOGIN', 'Log In');
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Integrity Mountain Custom Homes');
define('HEADER_SALES_TEXT', '<strong>Custom Homes</strong>');
define('HEADER_LOGO_WIDTH', ' ');
define('HEADER_LOGO_HEIGHT', ' ');
define('HEADER_LOGO_IMAGE', 'logo.gif');
// header Search Button/Box Search Button
define('HEADER_SEARCH_BUTTON','Search');
define('HEADER_SEARCH_DEFAULT_TEXT', 'Enter search keywords here');
// Showcase vs Store
if (STORE_STATUS == '0') {
define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log yourself in</a>?');
} else {
define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
}
define('TEXT_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?');
?>
:clap: You're the best man! I can't thank you enough, and thanks for putting up with this n00b!:blush:
I would like to know if this is possible - I basically don't want to waste my time pursuing it if it's going to be too complicated.
My site again is ncmodularhomesales.com
Since we are marketing modular homes, of course, customers can't actually purchase on our site. I would like to know if I can change everywhere it says "Shopping Cart" to "Wish List." And can I get the price to disappear? I've changed the cart status to "showcase with no prices" but the price still shows up in the cart and in the heading. It is most important to me to get the dollar amount out of the heading.
Thanks!
Thanks Clyde. I really wasn't sure if it was template specific or not. I will figure out where to post elsewhere. I did try what you suggested, but in the listings the call for price is everywhere and is a little annoying.
You can always edit the text to suit your needs:
includes/languages/rustic/english.php
Line #460 : define('PRODUCTS_PRICE_IS_CALL_FOR_PRICE_TEXT','Call for Price');
Line #461 : define('TEXT_CALL_FOR_PRICE','Call for price');
----
You can also change/create a new "call for price" graphic and save it to
includes/templates/rustic/images/call_for_prices.jpg
Thanks again! I can't begin to tell you how much you have helped me. Telling me where things are is doing the work for me, and I do appreciate it very much.:smile:
Clyde:
I am trying to change the page background (flesh colored image) so it will match the header background, and I can't seem to find the right section in the css file to do it. http://www.koberlintrading.com
Thanks for your help
Gordon
open includes/templates/rustic/css/stylesheet.css
change the highlighted portion to suit your needs.
body {
margin: 0;
padding: 0;
font: normal 62.5%/1.3em Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #000;
background: url(../images/bg.gif) repeat-x 0 0 #E7D4B6;
}
Maybe I missed something, but what would I change it too? to bg.gif or something else :oops:
Thanks Clyde, one again you have saved a newby
Gordon
Clyde:
Here I am again, on my checkout pages it doesn't show the "order_steps_image" just the alt name for it. I looked in my images folder and there isn't an image name that matches the alt, the image there in orderstep.png. The code on the page when I look at the source doen't call up orderstep.png it is calling "ORDER_STEP_IMAGE"
any ideas?
Gordon
Thanks again Clyde, you have saved the day again :clap:
Hello,
I just started customizing this template. I made it a smaller width - 800 px for now.
I'm finding that the only page that didn't reduce in width. I think it's cause the message box is too large.
Anyone know how to fix this?
thanks!
My site: http://creationsremembered.com/index...age=contact_us
If you click on the other pages you'll see that they are smaller. (i know its in mainenance mode but you can still get the picture.)
Thanks!
Open includes/templates/rustic/css/stylesheet.css
find the following declaration and change the width as indicated by the highlight. currently the width is set to 800px (the same width as the rest of the site.
TEXTAREA {
/* float: left;*/
margin: auto;
display: block;
width: auto;
}
You're so helpful! thanks so much!
Clyde:
I am trying to put subcatagories in my catagories menu and it doesn't show the subcatagories when clicking on the main catagory it just displays everything in the main catagory like it is just is one catagory with no subs. Is there a trick to doing this? I have seen some zen cart sites that do that.
Thanks
Gordon
This is not template specific... but;
You need to create your subcategories within your categoires
admin -> catalog -> categories/products
create your category
Then click the small folder on the left of the category name
On this screen just click the "new category" button and create your new "subcategory"
Now you can add your products.
You might want to check these articles in the tutorials/FAQ section
www.zen-cart.com/tutorials/index.php?article=56
www.zen-cart.com/tutorials/index.php?article=271
One more question...
I've got a funny gray bar running at the top of my page between the "Welcome Guest" and the "Shopping Cart" right under the header.
Suggestions on how i make that gray line go away?
Also, i see that the area behind the Welcome Guest" and "Shopping Cart" lines at the top is colored. Where in the CSS do i adjust the color behind the words?
www.creationsremembered.com
Thanks!!
open includes/templates/rustic/css/stylesheet.css
find and make the changes as indicated by the highlights
#cartHeader {
position: absolute;
top: 105px;
right: 0;
font-size: 1.2em;
color: #6D0000;
background: #DCD6C4;/*delete this*/
font-weight: bold;
width: auto;
}
.greeting {
position: absolute;
top: 105px;
left: 0;
color: #6D0000;
background: #DCD6C4; /*delete this*/
font-weight: bold;
font-size: 1.2em;
width: auto;
}
My "cart" is a Modular/Manufactured homes showcase. How can I take off the "shopping cart" tab along the top and the cart count and amount that is in the header?
Thank you.:smile:
open includes/templates/rustic/css/stylesheet.css
Find and edit the following declaration as indicated by the highlight
#cartHeader {
display:none;
position: absolute;
top: 57px;
right: 0;
font-size: 1.2em;
color: #6D0000;
background: #DCD6C4;
font-weight: bold;
width: auto;
}
Excellent! :D
But the Shopping cart tab is still there. Is there an easy way to do that too?:lookaroun
Same procedure as above except find and edit this declaration in the stylesheet.css
#navMain ul li.cart a {
display:none;
margin:0;
padding: 0 5px 0 4px;
float:left;
background: url(../images/tableftcart.gif) no-repeat left top;
color:#FFF;
text-decoration:none;
}
Thank you for saving me sooo much time! I'm very grateful.:clap:
Glad to help.
Hello,
We created a graphic with the category name to appear at the top of this page: http://creationsremembered.com/index...index&cPath=10
I'm trying to get the words "Wood Gifts" go away.
I tried modifying the stylesheet.css to:
#productListHeading {display:none;}
But the text still shows. Any suggestions?
thanks!!
I have a few problems with my emails using the Rustic Template and I'm hoping someone can help me.
1. The emails being sent from the admin area are not coming in HTML and they do not have the email template showing up.
This is my email template!
This is what I get when I do not use any html:Code:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=$CHARSET" />
<base href="$BASE_HREF" />
<style type="text/css">
body {background-color:#ffffff; color:#000000; font-family:Verdana, Arial, Helvetica, sans-serif; text-align:center;}
a:link {color:#0066cc;}
a:hover {background-color:#F9F9F9; color:#0066cc;}
a:visited {color:#0066cc;}
.holder {background-color:#ffffff; border:1px solid #9a9a9a; font-size:9px; text-align:left; width:600px;}
.header {font-size:10px; padding:0px; width:600px;}
.content {font-size:10px; padding:5px; width:600px;}
.footer {border-top:1px solid #9a9a9a; font-size:9px; margin-top:10px; text-align:center; width:600px;}
.disclaimer {background-color:#f9f9f9; border:1px solid #cccccc; font-size:10px; margin-top:10px; padding:5px; width:600px;}
.disclaimer1 {color:#666666; padding:5px;}
.disclaimer1 a:link {color:#666666;}
.disclaimer1 a:visited {color:#666666;}
.disclaimer2 {color:#666666; padding:5px;}
.unsubscribe {border-bottom:1px solid #9a9a9a; padding:5px;}
.copyright {border-bottom:0px solid #9a9a9a; padding:5px;}
</style>
</head>
<body>
<div class="holder">
<!-- Header Section -->
<div class="header">
<a href="http://www.baysdesigns.com/" target="_blank"><img src="http://www.baysdesigns.com/includes/templates/rustic/images/logo.png" border="0" alt="BaysDesigns - Custom Graphic Designs"></a> </div>
<!-- Content Section -->
<div class="content">
<div>Dear $EMAIL_FIRST_NAME $EMAIL_LAST_NAME,</div>
<div>$EMAIL_MESSAGE_HTML</div>
</div>
<!-- Footer Section -->
<div class="footer">
<div class="unsubscribe">$UNSUBSCRIBE_LINK</div>
<div class="copyright">$EMAIL_FOOTER_COPYRIGHT</div>
</div>
</div>
<div class="disclaimer">
<div class="disclaimer1">$EMAIL_DISCLAIMER</div>
<div class="disclaimer2">$EMAIL_SPAM_DISCLAIMER</div>
</div>
</body>
</html>
I am testing an email to myself.
This email address was given to us by you or by one of our customers. If you feel that you have received this email in error, please send an email to [email protected] This e-mail is sent in accordance with the US CAN-SPAM Law in effect 01/01/2004. Removal requests can be sent to this address and will be honored and respected.
This is what I'm getting when I use html code:
YOUR TITLE
YOUR DESCRIPTION
This email address was given to us by you or by one of our customers. If you feel that you have received this email in error, please send an email to [email protected] This e-mail is sent in accordance with the US CAN-SPAM Law in effect 01/01/2004. Removal requests can be sent to this address and will be honored and respected.
And also how do I change the zen cart link in the emails to my link?
Thanks so much!
www.baysdesigns.com
The Rustic template "out of the box" doesn't make any changes to the e-mail settings in your admin nor does it make any changes to any of the default e-mail templates.
You've obviously created your own e-mail template. You may need to double check some of your define statements for your specific e-mail template.
I haven't changed anything except for adding my logo, changed some color hex codes, and changed the width of the templates in the email templates. That is all that I have done in that area.
I really need some help.
The following is from the email_template_default.html
Compare this to what you've provided:Code:<!-- Header Section -->
<div class="header">
<img src="email/header.jpg" alt="logo" />
</div>
<!-- Content Section -->
<div class="content">
<div>$EMAIL_SUBJECT</div>
<div>$EMAIL_MESSAGE_HTML</div>
</div>
The highlighted portion is already provided by the following define statement in includes/languages/english/create_account.phpCode:<!-- Header Section -->
<div class="header">
<a href="http://www.baysdesigns.com/" target="_blank"><img src="http://www.baysdesigns.com/includes/templates/rustic/images/logo.png" border="0" alt="BaysDesigns - Custom Graphic Designs"></a> </div>
<!-- Content Section -->
<div class="content">
<div>Dear $EMAIL_FIRST_NAME $EMAIL_LAST_NAME,</div>
<div>$EMAIL_MESSAGE_HTML</div>
</div>
define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n");
You can edit additional wording for you e-mail(s) through the define statements in this file.
You can also edit additional e-mail details in the following file
includes/languages/english/email_extras.php
Hello, I am using zencart 1.3.7 and I have a problem because I cannot add links to the navigation links in tpl_header, I can add but it does not look the same as the rest. you can see in www.dotari-saloane.ro the links "Catalog" is not the same as the rest .. Home etc... I did what the FAQ said here: https://www.zen-cart.com/tutorials/i...hp?article=234 and add after
<li<?php echo (($current_page_base == 'shopping_cart') ? ' class="cart current">' : ' class="cart">');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_CART_CONTENTS . '</span>'; ?></a></li>
This :
<li><a href="http://www.dotari-saloane.ro/catalog.pdf" target="_blank">Catalog</a></li>
</ul>
But, as you can see, the result is not as I expected.
Thanks!
Thanks! It works!!! GREAT!!!! Thanks again!
Hello, it is me again, I want to know if there is a posibiliti to hide some of the links in the tpl_header.php with some if statements. For example, if the user is not logged in, the link /index.php?main_page=account to be hide, and when is logged in to be shown, and also the cart link if there are no products in it. Thans for your help!
Sure:
open includes/templates/rustic/common/tpl_header.php
find the following section of code
and replace it with the following:Code:<div id="navMain">
<ul>
<li<?php echo (($this_is_home_page) ? ' class="current">' : '>');?><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo '<span>' . HEADER_TITLE_CATALOG . '</span>'; ?></a></li>
<?php if ($_SESSION['customer_id']) { ?>
<li<?php echo (($current_page_base == 'logoff') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_LOGOFF . '</span>'; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li<?php echo (($current_page_base == 'login') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_LOGIN . '</span>'; ?></a></li>
<?php } } ?>
<li<?php echo (($current_page_base == 'contact_us') ? ' class="current">' : ' class="contact">');?><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo '<span>' . BOX_INFORMATION_CONTACT . '</span>'; ?></a></li>
<li<?php echo (($current_page_base == 'account') ? ' class="current">' : ' class="account">');?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_MY_ACCOUNT . '</span>'; ?></a></li>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li<?php echo ((in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success'))) ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_CHECKOUT . '</span>'; ?></a></li>
<?php }?>
<li<?php echo (($current_page_base == 'shopping_cart') ? ' class="cart current">' : ' class="cart">');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_CART_CONTENTS . '</span>'; ?></a></li>
</ul>
Code:<div id="navMain">
<ul>
<li<?php echo (($this_is_home_page) ? ' class="current">' : '>');?><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo '<span>' . HEADER_TITLE_CATALOG . '</span>'; ?></a></li>
<?php if ($_SESSION['customer_id']) { ?>
<li<?php echo (($current_page_base == 'logoff') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_LOGOFF . '</span>'; ?></a></li>
<li<?php echo (($current_page_base == 'account') ? ' class="current">' : ' class="account">');?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_MY_ACCOUNT . '</span>'; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li<?php echo (($current_page_base == 'login') ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_LOGIN . '</span>'; ?></a></li>
<?php } } ?>
<li<?php echo (($current_page_base == 'contact_us') ? ' class="current">' : ' class="contact">');?><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo '<span>' . BOX_INFORMATION_CONTACT . '</span>'; ?></a></li>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li<?php echo ((in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success'))) ? ' class="current">' : '>');?><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo '<span>' . HEADER_TITLE_CHECKOUT . '</span>'; ?></a></li>
<li<?php echo (($current_page_base == 'shopping_cart') ? ' class="cart current">' : ' class="cart">');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo '<span>' . HEADER_TITLE_CART_CONTENTS . '</span>'; ?></a></li>
<?php }?>
</ul>
Works great! Millions of thanks!
Hello Clyde,
I downloaded your 'Rustic' template from (sorry, site offline), installed it and it shows up but I can't get my site template to change to the Rustic. Thought I may have had a bad download, I found it again on your site I believe so I downloaded it again from there and installed it again according to instructions and when I click on Tools and go to the template installer, it shows as being there but after I go through the process to use it, my original template is still there, the Rustic one doesn't show up.
Can you possibly advise what I should check or do, I'm new to ZC and am trying to learn it so that I can move my existing store over to it.
My URL for the Zen Cart is rivercityemporium.com. I just got it installed the other day but have decided to change themes and thought the Rustic one would go better with the product lines I'm going to carry on it.
Thanks for any help you can send my way,
Jim
Thanks Clyde,
I followed your instructions and deleted all the files and then reinstalled the copy I received from your website and I still can't get it to change from the Glacial Age template to the Rustic one.
I feel comfortable that I've installed it correctly according to the instructions so I must be not completing all the steps in my admin to make the change, I'll try to find the instructions to do that and retry it.
Thanks for the help,
Jim
Ok, apparently I have another problem, that's the exact steps I took, I even deleted all the files and did the whole thing again from scratch and the Glacial Age template is still showing. I've even cleared my cache in the browser thinking the page just didn't reload.
I unzipped your file, uploaded the 'includes' folder to the public-html directory, then went into the admin and followed the two steps, everything looked normal until I clicked the refresh button at the bottom of the Layout Boxes Controller page, after clicking it, the top of the page still said it was Glacial Age, not Rustic.
I'll keep working on it,
Thanks again,
Jim
Did you install the latest security patch before installing the template.
If so go back and get the latest updated version of the security patch and install that.
Security Patch? No haven't done that but will right now and retry the install.
Thanks for the info, will let you know if it works this time.
Thanks
Jim
I'm sorry for bothering you on this and I really appreciate the help but I understand if you are busy.
I installed the security patch according to the instructions, tried the admin was able to bring it up ok so that tested good, tried to bring up my site and nothing happened, just a blank page. Went back in and made the correction to the html_output.php file as per the patch instructions, still no page coming up on site, went back and changed to the original html_output.php and the site comes up now but still with the Glacial Age template. Still unable to change templates but at least the site is back up.
I guess I'll just have to stay with the Glacial age template until I can learn more about Zen Cart.
Thanks again for your help, I'll get it working one of these days.
Jim
Clyde,
Just thought I'd let you know I finally got the Rustic template to work properly. I don't know what was causing the problem but I had to delete all templates except for the default green one. I had to even delete the Glacial Age one I was using. I guess something had the install process locked up or something. Once I deleted all the templates except the default one, everything started working right.
Anyway, thanks for all the help,
Jim
Clyde,
I just noticed that the catagory box is different than the others, I saw the fix you had and uploaded it but it didn't change, could you tell me if I'm missing something.
Thanks
Jim
open includes/templates/rustic/css/stylesheet.css
find and change the following declarations as indicated by the highlighted portion(s)
#categoriesHeading {
margin: 0;
padding: 0.5em 0.2em;
background-image: url(../images/sb_header.gif);
background-repeat: no-repeat;
text-align: center;
font-weight: bold;
}
#categoriesContent {
padding: 0.4em 0.4em 10px 0.4em;
background-image: url(../images/sb_content.gif);
background-repeat: no-repeat;
background-position: bottom;
font-weight: bold;
}
Fantastic, that got it to match the rest of the template but the font for the word, Catagories, is black instead of white like the others, can you point me to where I can fix that part?
Thanks
Jim
Got it, thanks.
Jim
Hey Clyde:
Using your Rustic template on a new support website I am putting up for Arcadem Pro software. I am stuck however. When you initially go to the home page, it appears fine. But if you click on any links or that, the whole left column resizes to what the right column is.
How do I fix that? Want left column to say same width it starts with and not resize the width, the way it is.
URL: Arcadem Pro Software
:cool:
First you have your right and left columns set at 190px and the box containers at 180px.
The graphics for the sideboxes are only 150px wide.
so if you want them to be 180px widr you'll need to create new graphics.
otherwise you could use the recommended setting for the template:
admin -> configuration -> layout settings
Column Width - Left Boxes (set to 150px) default
Column Width - Right Boxes (set to 150px) default
Column Width - Left (set to 160px)
Column Width - Right (set to 160px)
Long explanation for that. Cherry_zen crashed and would not work with wordpress where Rustic would. the cherry_zen directory is actually rustic. Eventually I will rename folders, but with so much installed already, I just use my current custom folder name which is cherry_zen.
Anyways.....you think copying the WHOLE packet would work? LOL
I had the WRONG stylesheet...no wonder. That was the culprit.
Well thought I had the problem solved. I did fail to copy the right CSS over but the problem still occurs. I need the columns both at 191px because of paid advertising I get. RIght column is fine. Left column, it appears that the category box is causing the issue of the left column resizing beyond the 191 px. What would do that?
Additional to my previous post:
You can click on the links in the left sidebox again, and sometimes it will reposition correctly, sometimes even worse.
These are the stylesheets that ae included with the rustic template
checkout_confirmation.css
checkout_payment.css
checkout_shipping.css
checkout_success.css
ie_stylesheet.css
print_stylesheet.css
stylesheet.css
stylesheet_betterCategoriesEzInfo.css
stylesheet_css_buttons.css
Maybe it would be better to just reinstall the rustic template (correctly) into its own folder(s) and not include it in the cherry_zen folder(s)
that way any files that might be in the cherry_zen folder that might conflict with files in the rustic template will be eliminated.
I got so much customization done already, trying to start again is not an option for me. I am started to take money in and committed to the Arcadem Pro programmer to go live in the AM officially to provide a source for downloads.
I think I know where the issue is. I want to turn off the current category box and have the links display at the top of the applicable pages. How can I do that?
Just turn off the category sidebox:
admin -> tools -> layout boxes controller
for the rest just un-comment the following declarations in the stylesheet.css delete the higlighted portions
/* #navCatTabsWrapper {
margin: 0 auto;
background: url(../images/navbar.gif) repeat-x;
font-weight: bold;
color: #ffffff;
}
#navEZPagesTop {
margin: 0 auto;
padding: 5px 0;
background: url(../images/navbar.gif) repeat-x;
color: #ffffff;
font-size: 0.95em;
font-weight: bold;
height:23px;
}*/
Thanks Clyde,
For for some reason, my gut feeling was pointing me to the categories sidebox. I like the menu system anyway better and problem solved. Thanks. Something in the code for that is resizing the left column completely, but not sure what. Not sure if it's my customization or in your theme (which I doubt). I went back to this theme, because it's one of the easiest to work with and I found very few bugs in it. Thanks again for great work.
:clap:
See my website here:
http://www.earthlytreasures.co.nz/in...page=page&id=1
I cant change or remove the notation TEXT_GREETING_GUEST
I can find it in several places using the tools but it just wont go away.
Please help
Thanks
I dont have this path:
includes/languages/english/rustic/header.php
After this:
includes/languages/english/
I get these options:
-classic
-extra_definition
-html-includes
-images
-modules
When i do a search with developers toolkit on "TEXT_GREETING_GUEST"
It tells me that this is written in these places:
/includes/languages/english/index.php
and
includes/functions/functions_customers.php
However, taking out or changing this either spot does not affect what shows.
Thanks
DEAN
Then you haven't uploaded all of the files and folders for the template.
Make sure you have uploaded the following:
includes/languages/rustic
includes/languages/english/rustic
includes/languages/english/extra_definitions/rustic
includes/languages/english/html_includes/rustic
includes/modules/rustic
includes/modules/sideboxes/rustic
includes/templates/rustic
Thanks for all your help. We really appriciate you spending so much time helping newbies.
I am having some problems with the tamplates (And some - like xmas and green marble dont have as many files and wont work at all). I often get the templates to work but I can never seem to figure out how much to open the folders before I upload them so maybe you can enlighten me a little about whats going on.
HERE IS MY RUSTIC ACTIONS.
-Download where I get an index file but uploading the index file dont work so I have to open it a little.
-Opening it and I get 3 folders (Languages, modules and templates)
-Opening templates I get rustic and then get six folderss called buttons, common css, images, sideboxes, templates
-I go to /includes/templatesand create a new file called rustic and upload those six folders. The template now works and I can play around with it (As you saw in my website so i am getting pretty good).
However there are two other folders that dont seem to do anything - Languages and modules.
Do these also go into the rustic folder that I created or should they be uploaded elsewhere? When I upload them do I upload like they are or do I have to open the two folders furter before I upload them(For example opening languages gets me english and rustic and those folders can then be opened further).
Maybe you can explain what is going on and then maybe I can get those little issues that is causing me a lot of grief (like that text that I am trying to get rid of)
Thanks a lot
DEAN
The includes file that comes with the rustic template is already set up in the same directory structure as Zen Cart.
All you need to do is upload (FTP) the entire includes folder to the root of your server where you have Zen Cart installed.
There is no need to rename or upload individual files.
This is the directory structure of the Rustic Template
includes/languages/rustic
includes/languages/english/rustic
includes/languages/english/extra_definitions/rustic
includes/languages/english/html_includes/rustic
includes/modules/rustic
includes/modules/sideboxes/rustic
includes/templates/rustic
Each of these contain folders/files that are needed in order for the template to work properly.
Hello Clyde:
After much trial and error I am almost done with my site. Could you please look at the bunkhouse page and see if you can tell me what to do about the white line under the logo with the title words Jewelry for Cowgirls, Cowboys--------------. I need to get rid of the white and of course center the title. Thanks!
http://www.sophisticatedcowgirljewelry.com
Hey Clyde thank you sooooo much! Now one more questions. Someone else installed my background for me and I notice it does not go all the way down the page. Any idea how to fix that?
http://sophisticatedcowgirljewelry.c...php?main_page=
open includes/templates/rustic/css/stylesheet.css
find the following and make the highlighted changes
body {
margin: 0;
padding: 0;
font: normal 62.5%/1.3em Verdana, Geneva, Arial, Helvetica, sans-serif;
color: #000;
background: url(../images/bg.gif) /*repeat-x 0 0*/ #E7D4B6;
}
Clyde I can not tell you how much I appreciate your help! I have struggled for a long time getting this site up. I know it needs to be tweaked some but it is finally up. THANK YOU!:clap::clap:
Hello Clyde
I have two things: first I would like to change the white background in the center of the pages where the products and main information go from gray to a tan color. How would I do that?
Also, on this page of categories I can not get it to have a Categories heading page like the other ones. Where it says Gifts for Cowgirls and Cowboys should be the header for the Category Gift Page. I have tried to delete all of this and redo it and it always comes up the same way just on this one category. All the rest of them work fine.
http://sophisticatedcowgirljewelry.c...products_id=76
Thank you so much Clyde!:clap:
Can you answer this one:
On this page of categories I can not get it to have a Categories heading page like the other ones. Where it says Gifts for Cowgirls and Cowboys and has the picture of the Cowgirls should be the header for the Category Gift Page. I have tried to delete all of the category page and the product page and reenter the information and it always comes up the same way just on this one category. All the rest of them work fine. I am confused. :no:
http://sophisticatedcowgirljewelry.c...products_id=76
Hi there,
I'm a newbie who has just installed this Rustic Template. However, for some reason, the sideboxes are completely missing. I'm sorry if this problem is very obvious but I have tried re-installing the template and it still won't work.
My site: http://rivendellnewage.co.nz/shop/
Thanks in advance,
Mark
In your admin panel, go to admin -> tools -> template selection, click the edit button, choose the template from the dropdown menu and click update.
Now go to admin -> tools -> layout boxes controller, Scroll down to the bottom of the screen and click the reset button.
Hi Clyde:
I tried to use the info you gave me to change the Gifts Categorie heading and it did not do anything.
Thank You!! I thought I had tried that.
Now when we change the background color for the center of the page we are getting white spaces behind the buttons what do we need to do to fix this
Actually we put it back to original. When we load a color on the middle of the page. The buttons on the left and the arrow across the middle of the page show up with a white background around them. She is working on changing it now with the css buttons. Any other ideas?
Figured it out!!!!!! Thanks Clyde:clap::clap:
Hello, I belive you are the best in helping my problems, I have made a second products category like in here: http://www.zen-cart.com/forum/showthread.php?t=44445 but now I don`t know how to make this sidebox to be the same as the products sidebox. Please help, my webpage is http://www.dotari-saloane.ro you can see it there! Thanks!
Try this:
Unzip the file and upload (FTP) the entire includes folder to your server.
Attachment 6563
Yes, it works but I have no idea how to make the stylesheet exactly like in the category sidebox. I try to change some things but I cant do anything good, I am not as good in coding, I think maybe it must be a class added or something but I really cannot do it myself. Any help much appreciated!
open includes/templates/rustic/css/stylesheet.css
add the following declarations
#documentcategoriesContent {
padding: 0.4em 0.4em 10px 0.4em;
background-image: url(../images/cb_content.gif);
background-repeat: no-repeat;
background-position: bottom;
font-size: 1em;
font-weight: bold;
}
#documentcategoriesContent a {
padding: 0 1em 0 .5em;
color: #000000;
text-align: inherit;
vertical-align: middle;
}