Changes between Initial Version and Version 1 of Ticket #49438
- Timestamp:
- 02/15/2020 01:44:30 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #49438 – Description
initial v1 3 3 4 4 It's due to the code 5 'condition' => ( is_front_page() || is_home() ) && ! is_page() 5 `'condition' => ( is_front_page() || is_home() ) && ! is_page()` 6 6 7 7 is_page(), infact, returns true on is_front_page() in that case. … … 9 9 I suppose it should be: 10 10 11 'condition' => is_front_page() || ( is_home() && ! is_page() ) 11 `'condition' => is_front_page() || ( is_home() && ! is_page() )` 12 12 13 13 Diff patch attached.