I have searched but with no luck
can someone tell me how to get rid of the "powered by zen cart" that comes from the curser when I mounseover my sidebox headers?
Thanks
Matt
I have searched but with no luck
can someone tell me how to get rid of the "powered by zen cart" that comes from the curser when I mounseover my sidebox headers?
Thanks
Matt
Your URL?
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
f13shop.com/f13satabase
...failed to open stream: No such file or directory in /home/content/f/1/3/f13shop/html/index.php
My bad.
I had a typo sorry
http://f13shop.com/f13database/
What method did you use to get the sidebox headings replaced with images? That code is causing the alt text, wherever it is.
here is a link to what I used but I do not see anyghing in the code myself that would make this issue.
https://www.zen-cart.com/tutorials/i...hp?article=135
This is adding the value of the constant HEADER_ALT_TEXT as the alt text for every image. Eliminate it (it is an optional parameter) and you will get rid of the alt text.Now in includes/modules/sideboxes/CUSTOM/categories.php Find this:
$title = BOX_HEADING_CATEGORIES;
and change it to:
$title = zen_image($template->get_template_dir(BOX_HEADING_CATEGORIES, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . BOX_HEADING_CATEGORIES, HEADER_ALT_TEXT);
This tutorial gives the most difficult of several possible methods for image replacement. Since you are editing the define already, you can put the whole zen_image code there:
define('BOX_HEADING_CATEGORIES', zen_image(DIR_WS_TEMPLATE . '/buttons/' . $_SESSION['language'] . '/' . 'your_image.gif', 'Your alt & title text for heading')
Sideboxes with links in the heading (like shoppingcart) have [more] added to the text by default. This would interfere with any image, so if necessary, in your /includes/languages/CUSTOM/english.php find this line of code:
define('BOX_HEADING_LINKS', '  [more]');
Change it as follows:
define('BOX_HEADING_LINKS', '');
The other method is to install Image Titles from Free Addons; this automatically handles the replacement for any box which has an image file correctly named, without any further code editing.
I have a revised tutorial almost ready to submit to replace the current version, so hopefully people will not be misled in the future.
Thank you.
You are most kind for helping
I will look into this
Matt
Do I put this
define('BOX_HEADING_CATEGORIES', zen_image(DIR_WS_TEMPLATE . '/buttons/' . $_SESSION['language'] . '/' . 'your_image.gif', 'Your alt & title text for heading')
In my catagories.php file?
or my english.php file?