TheDukeOfHurl 0 Posted December 23, 2018 Hello! I have two links on my index footer that I would like to edit. One involves capitalizing the 'o' in 'Conditions of Use' and the other involves adding an E-Mail hyperlink. How can these be achieved? Thanks! Share this post Link to post Share on other sites
♥JcMagpie 1,421 Posted December 23, 2018 /public_html/includes/languages/english/modules/content/footer/cm_footer_information_links.php edit and make the changes you require. 1 valquiria23 reacted to this Share this post Link to post Share on other sites
Rocioperea11 0 Posted December 24, 2018 By custo or footer tmp Share this post Link to post Share on other sites
Xarlina 0 Posted May 20 (edited) Hi there, it could be done through footer template, but don`t forget to make a copy of the new version of the footer. It helps you quickly make changes if in some reasons footer file will be updated and returned to its original condition. It`s just friendly advice, for now, I`m a blogger and essay writer from xx but I`ve to deal with something like this before. Edited May 20 by bonbec Spam link removed Share this post Link to post Share on other sites
MrPhil 646 Posted May 23 Text such as "Conditions of Use" will normally be found in one of the "language" directory files. Rather than searching through them manually, use a tool such as findstr (Windows) or grep (Linux) to search all your .php files for the string "Conditions of Use". Then just edit the file that came up. Don't forget the /s or -S flag to search all subdirectories below the top one. This way you never have to ask again "where do I find such-and-such string?". Give a man a fish... Adding a new link means finding the code that outputs to the appropriate section of the screen, and modifying it. You of course need to be fairly able in HTML and PHP (don't use a WYSIWYG page editor to do this -- it will mess up the code). Share this post Link to post Share on other sites
burt 3,800 Posted May 23 In quite recent (Edge, BS4) I changed the links system to make it easier - so you can now amend one file to add in a new link; https://github.com/gburton/Responsive-osCommerce/blob/master/includes/languages/english/modules/content/footer/cm_footer_information_links.php#L22-L27 this auto-updates the list that shows in the footer area by simply adding another item to the CONST array In older versions (Frozen, Gold etc) you need to amend two files https://github.com/gburton/Responsive-osCommerce/blob/2341-Frozen/includes/languages/english/modules/content/footer/cm_footer_information_links.php#L22 add lng define in this file https://github.com/gburton/Responsive-osCommerce/blob/2341-Frozen/includes/modules/content/footer/templates/tpl_cm_footer_information_links.php#L8 add list item here 2 Smoky Barnable and Omar_one reacted to this This is a signature that appears on all my posts. IF YOU MAKE A POST REQUESTING HELP...please state the exact version of osCommerce that you are using. THANKS Get the latest Responsive osCommerce CE (community edition) here Share this post Link to post Share on other sites