I have tried using the web address that you provide and it doesn't pull up.
Printable View
I have tried using the web address that you provide and it doesn't pull up.
I wanted to make sure I included ALL the changes I made to the includes/languages/english/extra_definitions/MY_TEMPLATE/footer_menu_defines.php file. So let me try posting my issue again with the updated information..
See this site: http : // clientmybeautyaddiction . overthehillweb . com (REMOVE SPACES FROM URL)
In the Information sidebox is a link to the Payment Policy defined page. The page link shows up just fine in the Information sidebox, but in the footer menu it behaves as if I am missing a language file. I am a little stumped as to why..
Here's what the third column code in the includes/languages/english/extra_definitions/MY_TEMPLATE/footer_menu_defines.php file looks like:
Here's the code from the Information sidebox file (includes/modules/sideboxes/custom_template/information.php):Code:/*BOF Menu Column 3 link Definitions*/
Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>');
Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>');
Define('PAYMENTPOLICY', '<li><a href="' . zen_href_link(FILENAME_PAYMENTPOLICY) . '">' . BOX_INFORMATION_PAYMENTPOLICY . '</a></li>');
Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>');
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
//Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
Define('ACCOUNT', '');
/*EOF Menu Column 3 link Definitions*/
/*BOF Menu Column 4 link Definitions*/
Define('TITLE_FOUR', '<li class="menuTitle">Important Links</li>');
/*The actual links are determined by "footer links" set in EZ-Pages
*EOF Menu Column 4 link Definitions
*/
/*BOF Footer Menu Definitions*/
Define('QUICKLINKS', '<dd class="first">
<ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . '</ul></dd>');
Define('INFORMATION', '<dd class="second">
<ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>');
Define('CUSTOMER_SERVICE', '<dd class="third">
<ul>' . TITLE_THREE . SHIPPING . PAYMENTPOLICY . PRIVACY . CONDITIONS . CONTACT . ACCOUNT . '</ul></dd>');
Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
Define('IMPORTANT_END', '</ul></dd>');
/*EOF Footer Menu Definitions*/
What gives?? What did I do wrong??Code:if (DEFINE_PAYMENTPOLICY_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_PAYMENTPOLICY) . '">' . BOX_INFORMATION_PAYMENTPOLICY . '</a>';
}
Well I have taken a look and I have no idea what to do. Sorry about that.
Both links work correctly, it's just the text display in the footer that is not picking up the define. Have you checked in Tools > Developers Toolkit on what files use/define that constant? I would suggest that the define is only happening when the sidebox is processed, but since that should be before the footer, and I don't see why an already-defined constant should be unset during page processing, I am also stumped on why it is happening. For a workaround, you could make a new define like FOOTER_PAYMENTPOLICY.
Weird.. Checked with the Developer's Toolkit... No other defines use that same constant.. I created a new define as you suggested, and now "FOOTER_PAYMENTPOLICY" shows instead of "Payment Policy".. I know I could just hard code the correct text in here, but this SHOULD work and I would prefer to NOT hardcode the text in if at all possible.. Call it me being anal..:laugh: Wish I knew why this isn't working..:frusty:
Hi Diva I transform the about_us page into a payment policy module and use it to test this out. I use the links you provided and use the new module links in the footer. I get the same problems as you. It has something to do with the footer_menu. I have been looking at this for a while now. I will look some more tomorrow and let you know if I find a solution.
Hello, how do I remove reference to "Newsletter Unsubscribe" under Information in the Footer.
I also want to remove "Featured Products" and "Specials" from the Quick Links in the Footer.
I am using the Upscale Boutique template.
Diva, what kind of debugging have you done for this? What do you get if you add in footer_menu_defines.php something likeQuote:
Weird.. Checked with the Developer's Toolkit... No other defines use that same constant.. I created a new define as you suggested, and now "FOOTER_PAYMENTPOLICY" shows instead of "Payment Policy"..
orPHP Code:
echo ' Payment Policy text: ' . FOOTER_PAYMENTPOLICY;
PHP Code:
echo ' FPP ' . (defined(FOOTER_PAYMENTPOLICY)? '': ' not ') . ' defined. ';
Do you mean you haven't gotten any echoed output one way or the other? If that is the case, maybe it needs a more complicated method of giving feedback. I tried an echo for a function that was not working and got no info from it. Fortunately for that case, it just worked when I jiggled something and I no longer needed the echo.
I have seen posts about getting info into a debug or log file... would have to research to remember how that is supposed to work.
I am having the same issue except mine is the Return Authorization.. (I believe it is by the same author?)
Anyway, the link works fine in the sidebox but does not show in the footer menu.
I too am banging my head against a wall because i seriously do not want to have a sidebox!
Bubba (aka Dan)
Hi all,
I'm in need of some assistance, although I have been learning CSS with a slight knowledge of HTML I decided to start an online shop.
As you can see from looking at my site www.luminousglow.com.au I have done well I believe (open to critics) Though I need help as you can see from my link there is below in my footer a white area, I have looked and looked and edited so many pictures yet I cannot source this area to black it out.
Please someone pimp my mind!
Regards
Michael
In stylesheet_footer_menu.css, you have a rule using a background image:
This image is black but sticks to the bottom of the container and does not fill it. It (along with three other edging backgrounds) is partially concealing a white background on another element,Code:#navSuppWrapper {
background: url("../images/footer_rb.gif") no-repeat scroll right bottom transparent;
font-weight: normal;
margin: 0;
padding: 0 0 1px;
}
Delete the #EEEDE5 to let the page background show through, or change it to #000000 to make it solid black.Code:.body-bg .bottom-wrapper {
background: url("../images/footer_bg_left.gif") repeat-y scroll 0 0 #EEEDE5;
}
Where did you get this footer menu from? It has a slew of nested divs and a table, which Clyde didn't use at least in any recent years. These make it all much more complicated, and are the sort of tricks that had to be used ten-fifteen years ago to accomplish what can now be done with one or maybe two divs and a couple of stylesheet rules.
http://www.pixemus.com/abagon-free-z...-template.html ?? I'm new to all this so to be honest I wouldn't know what's easy to what's hard.
Wondering if you can help me out with one more thing please?
On my http://www.luminousglow.com.au/index...e=products_new you can see that the home link image is white? I have attempted to alter this image yet nothing.. is it an image or a code.. its hard to see but there is a blue arrow associated in the white field.
There is a whitish background image behind the link:
stylesheet.css, line 562:Code:#navBreadCrumb a {
background: url("../images/breadcrumbs_bg.gif") repeat scroll right 0 transparent;
color: #767676;
margin-right: 4px;
padding: 2px 11px 2px 5px;
text-decoration: none;
}
You should probably post additional questions not related to this footer menu in the support thread for your template: http://www.zen-cart.com/showthread.p...Support-Thread
Thank you again so much! life saver! and Diva thank you also.
I'm still have this situation...Attachment 13520
I change some css information, but ez pages in column go out of border
You would need to increase the height of one or more elements to accommodate the list. Seeing the site live will let us advise you what to change and how.
Thank you so much
www.100asa.it
ps: adjust css to have backgroud color orange on hover mouse
Find in stylesheet_footer_menu.css and change 112 to 142:InCode:#footer{margin:0 auto;text-align:left;background:url(../images/footer_bg.gif);width:960px;height:112142px;clear:both;}
add background: orange; Adjust color to taste.Code:#navSuppWrapper li a:hover{letter-spacing:.1em;color:#444;margin:0;padding-left:2em;padding-bottom:.3em;display:block;background: orange;}
I'm trying to add more links, but don't works.
Define('RMA', '<li><a href="http://www.100asa.it/returns.html"</a></li>');
is it right?
How can I lessen the amount of white space under the horizontal rule image in the bottom of the footer?
http://www.designerperfumesnob.com/womens-perfume
You appear to have a large margin on your stylesheet for:
Code:#siteinfoLegal {
padding: 0.5em 0px 20px;
font-size: 0.9em;
text-align: center;
width: 100%;
line-height: normal;
clear: both;
color: rgb(68, 68, 68);
background: none repeat scroll 0% 0% rgb(255, 255, 255);
margin-bottom: 30px;
}
I changed the padding and that did it. Thanks! I had no idea what file to look in.
- deleted -
Thanks for the update that this was able to fix the problem ... :smile: