Mr_Ploppy Posted June 30, 2009 Posted June 30, 2009 I am trying to change the table header Manufacturer to Event Location. I have already change the english.php and the index.php When you do a quick search or an advanced search it has "Event Location" in the header. However if you through the catagories at the top it remains "Manufacturer " I've read loads in the forums and search for the text in all the Php files, what am I missing? I've spent 2 days on this. its late and my eye now hurt. I have even gone through the admin pages and changed most of entries reffering to Manufacturers there too. running on osCommerce Online Merchant v2.2 RC2a.
germ Posted June 30, 2009 Posted June 30, 2009 Some of the page is stored in a cache. In your admin you could set "Use cache" to false. Save it. Or somewhere in the admin there is a place to reset the cache. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
Mr_Ploppy Posted July 3, 2009 Author Posted July 3, 2009 If you open the source on the webpage. <td class="boxText"><form name="manufacturers" action="http://www.grosvenor-entertainments.co.uk/catalog/index.php" method="get"><select name="manufacturers_id" onChange="this.form.submit();" size="1" style="width: 100%"><option value="" SELECTED>Please Select</option><option value="4">Lyceum Theatre</option><option value="7">Silverston</option><option value="3">Theatre 2</option><option value="6">Victoria Palace..</option><option value="11">Wembley Arena</option><option value="10">Wembley Stadium</option><option value="2">Wimbledon</option></select></form></td> Where is it getting this from?
Mr_Ploppy Posted July 3, 2009 Author Posted July 3, 2009 my mistake, It this bit I need to change <td class="productListing-heading"> <a href="http://www.grosvenor-entertainments.co.uk/catalog/index.php?cPath=1&page=1&sort=5a" title="Sort products ascendingly by Manufacturer" class="productListing-heading">Manufacturer</a> </td>
♥ecartz Posted July 3, 2009 Posted July 3, 2009 productListing-heading is in includes/modules/product_listing.php Always back up before making changes.
Mr_Ploppy Posted July 3, 2009 Author Posted July 3, 2009 SOLUTION : CHANGED case 'PRODUCT_LIST_MANUFACTURER': $lc_text = TABLE_HEADER_MANUFACTURER; $lc_align = ''; break; TO case 'PRODUCT_LIST_MANUFACTURER': $lc_text = "Event Location"; $lc_align = ''; break; Seems to be happy now. It resolves the text in the header and the "sort product by Event Location" when you put your cursor over it. Very odd that this table header is different to all the others. Credit goes to Matt gold star for this one. Ta
Recommended Posts
Archived
This topic is now archived and is closed to further replies.