Loading...
 
Features / Usability

Features / Usability


Home Page title stuck on

posts: 758 United States

Seems little things here and there are popping up all over the place since our 18.x recent upgrade, I noticed the "HomePage" title is displayed at the top of the page. It never was before. System wide I have "Display Page Name as Title" activated on.
For our home page properties I have "Show Page Title" off.
But the title is being displayed. Any suggestions are greatly appreciated.
Please see https://thepatriotwoodwiki.org/HomePage

posts: 8633 Israel

Hi John,

I kindly suggest to check if the issue has been reported at https://dev.tiki.org/Wishlist
If yes please post an update here.

If you can’t find a ticket on our wishlist, please open a ticket at https://dev.tiki.org/Make-a-wish and eventually create an instance and paste the link to the item here.

It is good to test with an instance for several reasons;

  • You test the last version of the code of your branch (may be it was fixed)
  • You test on a clean Tiki (so many setting in Tiki) :-)
  • We can play with it.


Thanks!



posts: 2428 Czech Republic
Sounds like a regression to me... probably in the latest 18.x svn (unreleased 18.3 yet) if it was not doing it there in 18.2.

posts: 758 United States

Hmm, very strange. I removed custom css

Copy to clipboard
} @media print { body { margin: 0; color: #000; background-color: #fff; }


And page title controls work again. The code was an attempt to fix my black PDF background, a suggestion made by Bernard at https://tiki.org/forumthread70022-mpdf-Generates-Black-PDF-docs?topics_offset=0

I don't know why that would cause issues with page title, but it did, I removed it from my Custom CSS and we are back to normal again. Go figure.

posts: 2428 Czech Republic

your code has an extra closing curly bracket at the beginning and missing closing curly bracket at the end. It should be:

Copy to clipboard
@media print { body { margin: 0; color: #000; background-color: #fff; } }