Changes between Initial Version and Version 1 of Ticket #5301, comment 12
- Timestamp:
- 01/13/2014 03:07:17 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5301, comment 12
initial v1 7 7 The themes that have some type of template loader logic are all checking against what type of post the current page is. 8 8 9 When BP runs its theme-compat code, BP resets the post so `'is_archive'` set to true. For themes with template loader logic, they will load up their archive template and the archive template historically uses `the_excerpt()` causing all formatting to be stripped out.9 When BP runs its theme-compat code, BP resets the post so `'is_archive'` is set to true. For themes with template loader logic, they will load up their archive template and the archive template historically uses `the_excerpt()` causing all formatting to be stripped out. 10 10 11 11 I've attached a simple patch against 1.9-branch that switches out all of our reset post code so `'is_page'` is set to true and removes the `'is_archive'` portion.