might work for you, it hasnt for mine but others seems to have made it work.
make sure to check the theme part of the rc-1 to rc-2 upgrade installation.
just noticed that the profile for buddypress.org doesnt have the wire either. it was there a couple of days ago.
In your member theme in /wire/post-list.php change this:
<?php if ( bp_has_wire_posts( bp_wire_item_id(), bp_wire_can_post() ) : ?>
to this:
<?php if ( bp_has_wire_posts( 'item_id=' . bp_wire_item_id() . '&can_post=' . bp_wire_can_post() ) ) : ?>
thanks Andy, this worked a treat!
gotcha. that worked. thanks!
If I use define( ‘BP_GROUPS_SLUG’, ” ) in my wp-config.php the wire in groups is broken.
define( ‘BP_MEMBERS_SLUG’, ” ) for the profile wire is ok!
Andy,
That fix worked perfectly on my site as well. Is there a similar fix for forum posts not showing up on the site wide activity widget?
@Svenl77 – Let me check this out, and I’ll let you know.
yes ther is problem with the slugs and certain bit of code that means that wire is broken on the groups page
burt helped me get this to work..
https://trac.buddypress.org/ticket/723
the problem i have now is that when i went through this i managed to break the displaying of the profile wire.. the post submit ok but the display of them has conked??
can any one think what it could be… they were working well before..
one thing i did do is define change ( ‘BP_GROUPS_DB_VERSION’, ‘1300’ ); to 1301 and this may have broken it i changed it back now.. could it have…
where is the display wire for profile part
@andy
@burtadsit
could the patch that burt has made here.. https://trac.buddypress.org/ticket/723 change the way that this bit of code works in my post-list.php in my theme.
<?php if ( bp_has_wire_posts( 'item_id=' . bp_wire_item_id() . '&can_post=' . bp_wire_can_post() ) ) : ?>
basically andy you offerd this as a fix but i am just wondering that now that the issues with the slugs in the core files that are fixed on groups wire now effect the way in which the wires post display on the profile side of things..
does tha make sense??
In other words i am try the fix the fact that the wire posts are not displaying on profile pages.
they were working perfectly before burt and i fixed the groups wire??
Timoty West, put everything back to the way it was before the changes. Remove the slugs mods you made to BP_MEMBERS_SLUG and BP_GROUPS_SLUG and let me look at a real fix.
You can either have slugs you want or wires. There is no middle ground at the moment.
if I use the wire_patch_too.patch, profile and groups are fine. but if I try to use wire in a custom component it is broken.