#5888 closed defect (bug) (fixed)
buddypress.css being overridden after 2.1 update
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.1.1 | Priority: | normal |
Severity: | normal | Version: | 2.1 |
Component: | Appearance - Template Pack | Keywords: | has-patch commit |
Cc: | hugoashmore@… |
Description
There has been some reports in the forum of the 2.1 update overriding buddypress.css
See here for details:
http://buddypress.org/support/topic/my-customs-styles-stopped-work/
I'm unable to confirm because I'm away from my computer for a few days but thought it is worth highlighting the issue here.
Attachments (2)
Change History (12)
#1
@
10 years ago
- Component changed from Core to Template Pack
- Keywords has-patch added
- Milestone changed from Awaiting Review to 2.1.1
#5
@
10 years ago
There is a problem with the patch (5888.01)
The line:
$retval['location'] = trailingslashit( $location['uri'] ) . trailingslashit( $subdir ) . $file;
Should be:
$retval['location'] = trailingslashit( $location['uri'] ) . trailingslashit( $subdir ) . $location['file'];
#7
@
10 years ago
5888.02.patch is 5888.01.patch corrected according to shpitzyl comment. r-a-y do you confirm it's good to go ?
#9
@
10 years ago
- Owner set to imath
- Resolution set to fixed
- Status changed from new to closed
In 9065:
This ticket was mentioned in Slack in #buddypress by henrywright. View the logs.
10 years ago
Note: See
TracTickets for help on using
tickets.
This is a side-effect of #5615 where we minified all our assets.
Attached patch changes the
locate_asset_in_stack()
method in bp-legacy so it does not look for minifed assets in parent and child themes.