
Originally Posted by
irishshoppercom
Thank you for the ultra fast reply.
I have come across this problem many times before in other files and correctly easily but in this case I cannot find the actual file I need to open and correct. I have used Developer Tools to try and search for some of those HTML lines but it does not through up them listed in any files. If I knew the file or files I have to edit have no problem fixing them.
Look in your site's /includes/modules/westminster_new/flexible_footer_menu.php. On/around line 31, you'll see
Code:
$page_query_list_footer[$rows]['text'] = $page_query->fields['col_html_text'];
Change that line, adding the highlighted 'bits':
Code:
$page_query_list_footer[$rows]['text'] = str_replace(array('<', '>'), array('<', '>'), $page_query->fields['col_html_text']);
Don't forget that trailing )!
Bookmarks