Search Results for 'forum'
-
AuthorSearch Results
-
June 26, 2016 at 7:32 am #255233
sharmavishal
ParticipantHome is a component..
bp_is_single_item()so lets say u go to forums of that group it would be Group Title–Forums…why would u need to change that? this is the correct behaviourJune 25, 2016 at 4:53 pm #255217In reply to: [Resolved] Hide Topics and Replies from choices
danbp
ParticipantI finally asked Boone for help.
bbp_buddypress_loadedfires before everything is, in fact, fully loaded. bbPress’s component-specific extensions aren’t loaded until bp_init:7 (ty @boonebgorges for this explanation).Changing add_action to
bp_initwith a priority of 8 did the job !This may work for Site Activities, Members and Group activities
function bpfr_remove_activity_dropdown_label() { // Remove forum filters in site wide activity streams remove_action( 'bp_activity_filter_options', array( bbpress()->extend->buddypress->activity , 'activity_filter_options' ), 10 ); // Remove forum filters in single member activity streams remove_action( 'bp_member_activity_filter_options', array( bbpress()->extend->buddypress->activity , 'activity_filter_options' ), 10 ); // Remove forum filters in single group activity streams remove_action( 'bp_group_activity_filter_options', array( bbpress()->extend->buddypress->activity , 'activity_filter_options' ), 10 ); } add_action( 'bp_init', 'bpfr_remove_activity_dropdown_label', 8 );Works also by using
bp_actionshook.June 24, 2016 at 7:08 pm #255182In reply to: Installed. Now, what?
r-a-y
KeymasterIf you want to use forums, you should use bbPress instead.
bbPress = forums plugin
BuddyPress = community plugin (member profiles, user groups, private messaging, notifications)You can use both, but if a forum is all you need, then use bbPress.
I personally am not sure why you would move from phpBB. Installing WordPress just to use a WordPress forum plugin is not the best way to go about things unless you need to blog and use specific WordPress functionality on your site.
June 24, 2016 at 6:44 pm #255180In reply to: Can’t Activate WP User Sync
danbp
ParticipantYou should READ the error msg when you see one ! The plugin who generated the error is mentionned in it…
The support forum is here: https://fr.wordpress.org/plugins/bp-xprofile-wp-user-sync/June 24, 2016 at 3:52 pm #255167In reply to: Can’t Activate WP User Sync
shoreshotweb
ParticipantI don’t see it in the list of forums. Can you please send me a link?
June 24, 2016 at 3:12 pm #255160In reply to: Can’t Activate WP User Sync
sharmavishal
ParticipantRaise this issue at XProfile WP User Sync support forum’s
June 24, 2016 at 3:11 pm #255159In reply to: Problem with registration
sharmavishal
ParticipantBest asked at redistrict pro forum’s
June 24, 2016 at 1:48 pm #255156In reply to: calling BP function in bbpress return nothing
hosam020
Participant@shanebp Thank you for the kindly reply
Yes i am using it.
i think you mean i have to call this action in theme funcation ourside the bp localfile.unction bbp_trash_topic( $topic_id = 0 ) { // Validate topic ID $topic_id = bbp_get_topic_id( $topic_id ); if ( empty( $topic_id ) || !bbp_is_topic( $topic_id ) ) return false; $args = array( 'user_id' => 386, 'item_id' => $topic_id, 'secondary_item_id' => 0, 'component_name' => 'forums', 'component_action' => 'new_topic', ); bp_notifications_delete_notifications_by_item_id( $args ); do_action( 'bbp_trash_topic', $topic_id );Please ignore the args param just added a notification param to see if will delete it
but never happend
Sorry for my bad english i hope u understand me.June 23, 2016 at 5:19 pm #255093In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
syborg
ParticipantI posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !
June 23, 2016 at 2:38 pm #255063In reply to: Fatal error on a BuddyPress 2.6.0 upgrade
syborg
ParticipantHello, I had exactly the same problem, with the theme “KLEO” (seventhqueen).
If it can helps someone, the problem was caused by the plugin “Buddypress Cover Photo”. I fixed it by changing the first line in the file
/plugins/buddypress-cover-photo/group-cover.php:if ( class_exists( 'BP_Group_Extension' ) ) :by
if ( class_exists( 'BP_Group_Extension' ) && bp_is_active('groups') ) :(It’s my first post on this forum, so I wanted to say that Buddypress is a great plugin, good work guys !)
June 23, 2016 at 1:31 pm #255059In reply to: [Resolved] Hide Topics and Replies from choices
danbp
ParticipantSince 2.1, the option dropdown is no more hardcoded in the template but is generated dynamically.
I’m unable actually to tell you how to modify this new behave. (The old method is explained on the codex and in many topics here).
On Codex, if you have a serious php level (it’s not exactly my case), it’s explained how to add a new option. I guess there is a way to do the inverse, but i read a lot and tried many things, but didn’t find any working solution.
Meanwhile, i opened a topic on bbPress forum.
I tried this after asking @imath but it doesn’t work (i use bbp 2.6 alpha on my test site)
function remove_activity_filters( $bbp_buddypress = null ) { if ( bp_is_active( 'activity' ) && bp_is_activity_component() ) { // Remove forum filters in site wide activity streams remove_action( 'bp_activity_filter_options', array( bbpress()->extend->buddypress->activity, 'activity_filter_options' ), 10 ); } } add_action( 'bbp_buddypress_loaded', 'remove_activity_filters' );In case of one of you have an idea: @shanebp, @henrywright, @r-a-y, @djpaul ?
Merci beaucoup !June 22, 2016 at 11:34 am #254950danbp
ParticipantMany topics about this question are already on the forum. You can also read here to get an idea.
June 21, 2016 at 3:46 pm #254923Jon Fergus
ParticipantAnyone have any luck with this one? I’m trying to find a way to set a featured image that will work as the og:image for groups. Having no luck figuring it out yet.
Also, I was able to add the ability to include a featured image for a forum, but the featured image I set isn’t showing up as the og:image in the facebook debugger. See here where I posted about it in the bbpress forum. Not sure if this glitch is because my forum is within a buddypress group…?? If anyone has a clue how to do this, please share.
June 21, 2016 at 3:28 pm #254922In reply to: [Resolved] can’t find “Network Admin”
lemantico
Participanthi danbp,
thanx a lot for your quick reply! Meanwhile I figured it out, while browsing help videos on youtube! The description on your site is a kind of jumpy and maybe that’s why it confused me. Anyway, finally I got BuddyPress up and running now (incl. Chat & Forum), and I kinda like it, how easy the setup really was! Thank you again for your help! God bless you, mate!Best regards!
June 20, 2016 at 4:23 pm #254870In reply to: Move friend count bubble from tab to subtab
danbp
ParticipantHow do I do this?
You have to bake 5 894 pizza and search the forum ! Or experiment the following…
First you remove the counter. This can be done by using the language file.
Original string isFriends <span class="%s">%s</span>to replace by eg.Friendsor using this function (add to bp-custom.php)
function bpfr_remove_friends_count( $translated, $original_text, $domain ) { if ( 'buddypress' !== $domain ) return $translated; switch ( $original_text ) { case 'Friends <span class="%s">%s</span>': return 'Friends'; default: return $translated; } } add_filter( 'gettext', 'bpfr_remove_friends_count', 10, 3 );The Friends subnav has only two elements: friendships and request.
Friendships is the default one and can’t be removed. So we have to hide it with css. Add this to your child-theme style.css#friends-my-friends-personal-li {display:none;}This is default css, and you have to check it as it can vary depending your theme.
Finally add a new subnav item with counter in replaciement of the one you’ve just hiden (add to bp-custom.php).
function bpfr_custom_profile_sub_nav() { global $bp; if( bp_is_active( 'friends' ) ) $count = friends_get_total_friend_count(); $class = ( 0 === $count ) ? 'no-count' : 'count'; //Add subnav item bp_core_new_subnav_item( array( 'name' => sprintf( __( 'Friendships <span class="%s">%s</span>', 'buddypress' ), esc_attr( $class ), bp_core_number_format( $count ) ), 'slug' => 'friends', 'parent_url' => $bp->loggedin_user->domain, 'parent_slug' => $bp->friends->slug, 'screen_function' => 'friends_screen_my_friends', 'position' => 10 ) ); } add_action( 'bp_setup_nav', 'bpfr_custom_profile_sub_nav' );June 20, 2016 at 11:58 am #254865In reply to: [Resolved] can’t find “Network Admin”
danbp
ParticipantHi @lemantico,
please use the correct publishing tool when you insert links to post. You can add a screenshot here, but it must be stored on a external site. For that, use<img>button and insert the URL of the picture.Also, don’t use Google’s search result URL witch is stripped, but the canonical one.
1) Installing a network locally is a bit more complex as a regular install. It depends first on how you setup your local server and the OS you use.
You tell about bbPress, are you sure of this ? It’s only a forum plugin and has nothing to do with network setup. And you’re here on the BuddyPress forum!
If the codex didn’t helped you, maybe this tutorial can.
Sorry to not help more, but it’s not possible to rewrite here what is already written on WordPress & BuddyPress codex.
June 19, 2016 at 5:14 pm #254846In reply to: A question about @mentions
June 19, 2016 at 7:58 am #254829sharmavishal
Participantbest asked at Group Tags plugin support forums
June 18, 2016 at 7:02 pm #254806In reply to: Adding Gravity Forms Entry to Site Activity
danbp
ParticipantHi @littlemisslanna,
Yep, but you have better to ask how to do that on Gravity Form support forum. We can help you here for BuddyPress usage, not for third party implementation. Sorry ! 😉
June 17, 2016 at 2:20 pm #254737In reply to: global avatar
danbp
ParticipantSeveral topics are related to your question on the forum.
June 16, 2016 at 8:22 pm #254709danbp
ParticipantThat’s a question better to ask on BP Registration support forum.
June 16, 2016 at 4:57 pm #254686sharmavishal
Participantgot it ray
/wp-includes/functions.php on line 3897
BP_Event_Organiser_Group_ExtensionBP_WiseChat_Group_ExtensionRTMediaGroupExtensionBBP_Forums_Group_ExtensionJune 16, 2016 at 4:47 pm #254683sharmavishal
Participantdont think so
this is the site
kindly delete the site name from this forums after u had a look at it…..
if you want can pass on admin credentials for u to test/check
June 16, 2016 at 4:44 pm #254681r-a-y
Keymaster@sharmavishal – Do you see anything printed in the browser when the fatal error occurs?
Something like:
BP_Groupblog_ExtensionBBP_Forums_Group_Extension?June 16, 2016 at 3:40 pm #254645In reply to: Private messages isn’t working
danbp
Participantout of the box, i have no idea. Something is apparently called to early. It’s difficult to say “what”. Have you tested with a Twenty theme ?
Maybe check also all your js file version, ensure also the’re unique. If you find two with diff. version #, remove the oldest…Search also on forum for missing @mention or @mention not working….
That’s even debuging… you have to search long and hard. 😉
-
AuthorSearch Results