
Originally Posted by
dhinze
Applied RC2 update and now the header is looking for my my store logo in images/icons/ and it is pulling the default.png image.
Changes in Configuration - My Store have no effect.
I have not made any customizations
All templates appear to pull from its own images folder instead of the settings in Configuration-My Store
-DH
I just ran into the same issue. Are you using the fallback-html template as your base? This issue is due to changes in the file structure of osCmax.
The image locations were moved, but the html-templates were not yet updated.
Here is how I cleared the issue:
1. Copy the missing images to your templates/images directory.
2. Edit main_page.code.php in your template directory. You will need to change the {navicongroup} tag code. The path is pointing to the wrong place. We need to change it to point to your templates images directory.
So change this:
PHP Code:
//begin{navicongroup}
if ((tep_session_is_registered('customer_id')) && (!tep_session_is_registered('noaccount'))) { ?>
<a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo tep_image_button('log_off.png', HEADER_TITLE_LOGOFF);?></a>
<?php }
echo '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . tep_image_button('contact.png', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image_button('account.png', HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">'; ?><?php if (BASKET_CART =='cart') { echo tep_image_button('cart_contents.png', HEADER_TITLE_CART_CONTENTS); } else { echo tep_image_button('contents.png', HEADER_TITLE_CART_CONTENTS); } ?> <?php echo '</a> <a href="' . tep_href_link(FILENAME_WISHLIST, '', 'SSL') . '">' . tep_image_button('wishlist.png', HEADER_TITLE_WISHLIST) . '</a>';
//end{navicongroup}
to this:
PHP Code:
//begin{navicongroup}
if ((tep_session_is_registered('customer_id')) && (!tep_session_is_registered('noaccount'))) { ?>
<a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo tep_image_button('log_off.png', HEADER_TITLE_LOGOFF);?></a>
<?php }
echo '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . tep_image(DIR_WS_TEMPLATES . 'images/contact.png', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_TEMPLATES . 'images/account.png', HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">'; ?><?php if (BASKET_CART =='cart') { echo tep_image(DIR_WS_TEMPLATES . 'images/cart_contents.png', HEADER_TITLE_CART_CONTENTS); } else { echo tep_image(DIR_WS_TEMPLATES . 'images/contents.png', HEADER_TITLE_CART_CONTENTS); } ?> <?php echo '</a> <a href="' . tep_href_link(FILENAME_WISHLIST, '', 'SSL') . '">' . tep_image(DIR_WS_TEMPLATES . 'images/wishlist.png', HEADER_TITLE_WISHLIST) . '</a>';
//end{navicongroup}
That will change your template to look at its own image directory for the images. Just make sure you put the images you need in that directory.
Bookmarks