-
rich! @ etiviti posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
@boonebgorges – in group forum extras plugin as well… 😛 all sorts of little goodies in there. @r-a-y – have to calc in the page number
function bp_forum_extras_topic_last_post_link( $per_page = 15 ) { global $forum_template; $page = bp_forum_extras_get_page_number($forum_template->topic->topic_posts, $per_page); $page = (1 < $page) ?…[Read more] -
rich! @ etiviti posted on the forum topic Activity-Stream as Tracker only in the group How-To and Troubleshooting: 15 years, 4 months ago
activity/post-form.php
-
rich! @ etiviti posted on the forum topic Will you develop one of these buddypress.org enhancements? in the group buddypress.org Ninjas: 15 years, 4 months ago
why not both backticks and syntax highlighting? I can help out with the quote stuff (which requires a theme edit for the post reply textarea on each page – simple) – also if I could code an anchor permalink to the last topic reply 😛 FWIW – forum topic mover does not update activity stream […]
-
rich! @ etiviti posted on the forum topic Edit comments in the group How-To and Troubleshooting: 15 years, 4 months ago
nothing built in to edit activity reply comments (i do have a plugin to edit activity status updates but does not work on replies due to a lack of a bp filter/hook)
-
rich! @ etiviti posted on the forum topic How to change status update area in the group How-To and Troubleshooting: 15 years, 4 months ago
theme activity/post-form.php
-
rich! @ etiviti posted on the forum topic Custom URL's in the group How-To and Troubleshooting: 15 years, 4 months ago
looks like a number of those values are hard-coded in the group component… such as:
if ( $bp->current_component == $bp->groups->slug && 'group-settings' == $bp->action_variables ) { -
rich! @ etiviti posted on the forum topic page not found errors in the group How-To and Troubleshooting: 15 years, 4 months ago
IIRC – godaddy caches htaccess files
-
rich! @ etiviti posted on the forum topic Plugin-request / load new activity-posts automatically in the group Creating & Extending: 15 years, 4 months ago
live refreshing of the activity stream is on the roadmap (1.4)
https://buddypress.org/about/roadmap/given that – i wrote a simple ajax notifier plugin https://buddypress.org/community/groups/buddypress-activity-stream-ajax-notifier/ (short term solution)
-
rich! @ etiviti posted a new activity comment 15 years, 4 months ago
-
rich! @ etiviti posted on the forum topic Remove HOME from head/title in the group How-To and Troubleshooting: 15 years, 4 months ago
pulled in from
bp_page_title– filter name as wellbp-core-templatetags.php
function bp_get_page_title() { -
rich! @ etiviti posted on the forum topic I can't type backslash in the forum in the group How-To and Troubleshooting: 15 years, 4 months ago
might be a deep filter within bbpress but if you’re posting code/latex to the forums, have a go at installing syntax highlighter and just a quick hack to get that working properly:
https://buddypress.org/community/groups/creating-extending/forum/topic/quick-hack-enable-syntaxhighlighter-evolved-on-group-forums/#post-60096 -
rich! @ etiviti posted on the forum topic New Plugin: Blocking activity stream types (ie new member registered, friendship created, joined gro in the group BuddyPress Block Activity Stream Types: 15 years, 4 months ago
@pisanojm what version of php?
you can make a quick edit – open up bp-activity-block.php, edit line 7
function bp_activity_block_type_before_save( $type, &$a ) {
to
function bp_activity_block_type_before_save( $type, $a ) { -
rich! @ etiviti posted on the forum topic Group Tags not working? in the group How-To and Troubleshooting: 15 years, 4 months ago
-
rich! @ etiviti posted on the forum topic Want to help accelerate the release of BuddyPress 1.3? in the group Requests & Feedback: 15 years, 4 months ago
I’d probably dedicate more time to trac patches if I knew or had a better understanding what/where/how and being on the same page/vision for the project. Probably why I stick to plugins, I have a better control over what I think works vs what the collective maybe thinking. (plus i don’t look like a doof […]
-
rich! @ etiviti posted on the forum topic Hidng the delete link from members in the activity stream in the group How-To and Troubleshooting: 15 years, 4 months ago
filter on
bp_activity_delete_linkto remove it -
rich! @ etiviti posted on the forum topic Is there a latest forum topic widget? in the group How-To and Troubleshooting: 15 years, 4 months ago
add the arg no_stickies=no
bp_has_forum_topics( ‘no_stickies=no&type=newest&page=false&max=’. $instance )
-
rich! @ etiviti posted on the forum topic Is there a latest forum topic widget? in the group How-To and Troubleshooting: 15 years, 4 months ago
possible you changed the forum topic sort order somewhere else? seems ok on my demo site – try setting type=newest within -> bp_has_forum_topics( ‘type=newest&page=false&max=’. $instance ) otherwise there is no sort order to pass in.
-
rich! @ etiviti posted on the forum topic How to show groups on search results? in the group BuddyPress Activity Stream Hashtags: 15 years, 4 months ago
Well this plugin is geared just for the activity stream and keys off a delimited >#search_term< passed to the activity loop.
You'll need to create a plugin if you want to auto link groups based on some prefix marker (maybe &mygroupname – it would work on the same idea as auto linking @nuprn1 username mentions )
-
rich! @ etiviti posted on the forum topic Hiding the edit/ delete links in forum posts from members so only admin can edit/ delete in the group How-To and Troubleshooting: 15 years, 4 months ago
the edit/delete links are wrapped with wp_nonce_url() – so i’m assuming there is a level of protection if accessed directly.
also bp_get_the_topic_post_is_mine() is on the reply posts
-
rich! @ etiviti posted on the forum topic Hiding the edit/ delete links in forum posts from members so only admin can edit/ delete in the group How-To and Troubleshooting: 15 years, 4 months ago
have a look at the theme file /groups/single/forum/topic.php
two sets of admin links which you can apply a filter or just change the if statement around those (probably remove bp_get_the_topic_is_mine() )
- Load More
@nuprn1
Not recently active