Hello
on the Links Submission page I don't have the option to upload a banner image (as saw on Clyde's Test Site).
I've been throught most of the pages of this thread but haven't found the solution.
All the rest looks like is working fine.
Thanks for any help
marcap
http://www.italianleatherbags.it/ind...41d9d5045114e1
Hi Clyde,
I have a small problem and I don't seem to be able to fix it. My popup help window is useing the background image even though I have changed the tpl_main_page.php file to:
?>
<body id="popuplinkshelp">
<div>
<p><a href="javascript:window.close();"><?php echo TEXT_CURRENT_CLOSE_WINDOW; ?></a></p>
</div>
</body>
I have also changed my css file to:
}
#popupShippingEstimator, #popupLinksHelp, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {
background-color : #eee8aa;
background-image: none;
}
I have no idea what is happening as my other popup windowa are working fine and they are useing the background colour as per above of #eee8aa. Can you throw any light on what may be happening. Thanks
Rottie
Thanks Clyde, it now works I realised what I did wrong.
Rottie
On the Admin->Extras->Links Categories page the Sort Order works properly and the categories are displayed in sort order. However, when viewing the categories list from the catalog they are listed in alphabetical order.
I have looked in the configurations but have not been able to locate any options for this display.
Open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php
find the following line of code (around line 19):
and replace it with this line:PHP Code:$categories_query = $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_name");
PHP Code:$categories_query = $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from " . TABLE_LINK_CATEGORIES . " lc, " . TABLE_LINK_CATEGORIES_DESCRIPTION . " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lcd.link_categories_sort_order");
I tried this fix on 2 sites
it fixes the sort order for the online catalog, but no in the admin area
both site also get this error when you click on "view all link"
1054 Unknown column 'lcd.link_categories_sort_order' in 'order clause'
in:
[select lc.link_categories_id, lcd.link_categories_name, lcd.link_categories_description, lc.link_categories_image from link_categories lc, link_categories_description lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '1' order by lcd.link_categories_sort_order]