I think this is on topic...
I was having the same problem, used JUpgrade to migrate to 1.7.3 and all my imported articles display the Browser Page Title in an H1 on the page, even though I have Show Page Heading set to "No" and my Global Articles setting for Show Title set to "No." I did not change any menu settings, just saved the menu item, and the H1 disappeared. Obviously, something has changed in the way JUpgrade imports menu items and the way the menus work.
I went into the database for the Menu Item, in the Menu table, the Params setting for an old item looks like this:
Code:
{"show_noauth":"","show_title":"","link_titles":"","show_intro":"","show_section":"","link_section":"","show_category":"",
"link_category":"","show_author":"","show_create_date":"","show_modify_date":"","show_item_navigation":"",
"show_readmore":"","show_vote":"","show_icons":"","show_pdf_icon":"","show_print_icon":"","show_email_icon":"","show_hits":"",
"feed_summary":"","page_title":"MY PAGE TITLE","show_page_title":0,"pageclass_sfx":"","menu_image":"","secure":0}
After I save it (and the H1 disappears), it now looks like this:
Code:
{"show_title":"","link_titles":"","show_intro":"","show_category":"","link_category":"","show_parent_category":"",
"link_parent_category":"","show_author":"","link_author":"","show_create_date":"","show_modify_date":"","show_publish_date":"",
"show_item_navigation":"","show_vote":"","show_icons":"","show_print_icon":"","show_email_icon":"","show_hits":"",
"show_noauth":"","menu-anchor_title":"","menu-anchor_css":"","menu_image":"","menu_text":1,"page_title":"MY PAGE TITLE",
"show_page_heading":0,"page_heading":"","pageclass_sfx":"","menu-meta_description":"","menu-meta_keywords":"","robots":"",
"secure":0,"mega_showtitle":"1","mega_desc":"","mega_cols":"1","mega_group":"0","mega_width":"","mega_colw":"","mega_colxw":"",
"mega_class":"","mega_subcontent":"0"}
After fooling around a little, I found this item is the one that is missing from the old params that hides the title:
Code:
"show_page_heading":0
Now, how to fix it? I have over 700 menu items so, manually saving every one in the backend would take forever. Here's what I did (if you want to try it, be safe, MAKE A BACKUP OF YOUR MENU TABLE). Logged-in to PHPMyAdmin. First, I made sure I could find all the items missing the setting:
Code:
SELECT id FROM `g1tjr_menu` WHERE `params` not LIKE "%show_page_heading%"
If that looks good, strip the last character off the fields (the } character).
Code:
UPDATE `g1tjr_menu` SET `params` = SUBSTRING(`params`, 1, CHAR_LENGTH(`params`) - 1) WHERE `params` NOT LIKE "%show_page_heading%"
And, finally, run this query:
Code:
UPDATE `g1tjr_menu` SET `params` = CONCAT(`params`, ',"show_page_heading":0}') WHERE `params` NOT LIKE "%show_page_heading%"
I rebuilt the menus again in the backend with no problems. Fixed all my pages. Hope this helps someone.....