-
rich! @ etiviti posted on the forum topic How can i redirect in the group How-To and Troubleshooting: 15 years, 5 months ago
htaccess?
Options +FollowSymLinks
RewriteEngine on
RewriteBase /RewriteRule ^secure/register$ /secure/words-on-mobile/
-
rich! @ etiviti posted on the forum topic BuddyPress pages didplay but return a 404 header HTTP status in the group How-To and Troubleshooting: 15 years, 5 months ago
part of bp_core_do_catch_uri() when a template is not located then:
if ( $located_template = locate_template( array( ‘404.php’ ) ) ) {
status_header( 404 );
load_template( $located_template ); -
rich! @ etiviti joined the group Welcome Pack 15 years, 5 months ago
-
rich! @ etiviti posted on the forum topic Sticky a group in the directory? in the group How-To and Troubleshooting: 15 years, 5 months ago
i’d say the best bet is using a “featured group” style and adding some field to the group_meta table – then pull out that featured group within the theme template
-
rich! @ etiviti posted a new activity comment 15 years, 5 months ago
not yet using the current has_activities BP_Activity_Activity:get way… i may be able to get around it by building a custom db query to pull out a list of activity_ids (meeting the criteria for included bumped activity types with no activity comments) then pass that into BP_Activity_Activity:get_specific
-
rich! @ etiviti posted on the forum topic BUG: bbpress reply with buddypress in the group How-To and Troubleshooting: 15 years, 5 months ago
easy change via the theme file – you’ll need to edit whateverchildtheme/groups/single/forum/topic.php and comment out the if statement for bp_get_the_topic_is_last_page()
-
rich! @ etiviti posted on the forum topic the bp_has_activities() loop filtering in the group How-To and Troubleshooting: 15 years, 5 months ago
or drop me a note on here 😉
-
rich! @ etiviti posted on the forum topic BuddyPress XML-RPC in the group BuddyPress XMLRPC – Receiver: 15 years, 5 months ago
-
rich! @ etiviti posted a new activity comment 15 years, 5 months ago
awesome! i will include it
-
rich! @ etiviti started the forum topic BuddyPress XML-RPC in the group BuddyPress XMLRPC – Receiver: 15 years, 5 months ago
This plugin started out needing a way to update the buddypress activity stream when a member published a blog posting on their own independent wordpress install. (and a way to delete the activity stream record if they unpublished it) So I added some extra functions and turned it into a plugin for anyone else who […]
-
rich! @ etiviti posted on the forum topic removing certain group activity and groups from my groups section in the group Creating & Extending: 15 years, 5 months ago
this will block all new entries for certain activity stream types:
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/but i’m sure you could extract the code or modify it for a certain group, etc.
or you could loop over the has_activities filter and unset the items based on type
-
rich! @ etiviti posted on the forum topic What php code could i use to create a link back to the members profile in the group How-To and Troubleshooting: 15 years, 5 months ago
will dump out a full html link
bp_core_get_userlink ( $bp->displayed_user->id )just the link
bp_core_get_user_domain( $bp->displayed_user->id )$bp->displayed_user->id when viewing a profile – otherwise if you have the user_id that would work too
-
rich! @ etiviti posted on the forum topic topic.php so first post has unique css in the group How-To and Troubleshooting: 15 years, 5 months ago
quick function to check first post – reference that within the topic loop
function my_forum_is_first_post() {
global $topic_template;if ( $topic_template->post->post_position == 1 )
return true;return false;
} -
rich! @ etiviti posted on the forum topic Privacy component–where is it? in the group Creating & Extending: 15 years, 5 months ago
i’ve definitely hit that snag on adding new subnav items (and some other weird chain-events – if using the “loader” method to check bp first results in some hooks not catching – ie profile/settings nav items)
-
rich! @ etiviti posted on the forum topic Privacy component–where is it? in the group Creating & Extending: 15 years, 5 months ago
great news!
-
rich! @ etiviti posted on the forum topic feedback for member profile stats in the group BuddyPress Member Profile Stats: 15 years, 5 months ago
1 & 2 – both of those are restricted due to lack of hooks within the buddypress group forums templates (poster-meta) vs bbpress
3 – yes i’ll add that in as an option for the sidebar_me widget – just did that for a quick fix.
4 – thanks 😛
-
rich! @ etiviti posted on the forum topic Create an account is missing in the group Creating & Extending: 15 years, 5 months ago
did you enable allow users to register on your blog?
-
rich! @ etiviti posted on the forum topic Remove permalink 'view' link from Profile Container request in the group How-To and Troubleshooting: 15 years, 5 months ago
always try and override the values if a filter is available instead of modifying the bp-core files (next bp update you’ll need to make the changes all over again) bp_activity_latest_update() triggers the member-header activity – there is a filter bp_get_activity_latest_update as for the forum # permalink – that is in the…[Read more]
-
rich! @ etiviti posted an update 15 years, 5 months ago
If anyone is interested in creating an xmlrpc client – i have a new plugin in the works to enable some xmlrpc commands for buddypress.
http://etivite.com/2010/06/beta-test-buddypress-xmlrpc-receiver/
- Load More
@nuprn1
Not recently active