Replies
Hello Hans,
We have updated the plugin. Please try the new version and let us know if error has gone or not.
You can download from the following url:
https://buddydev.com/downloads/bp-confirm-actions/versions/bp-confirm-actions-1-0-6.zip
Regards
RaviHello Jennifer,
Thank you for posting. Please try the following code to redirect non logged-in user to Activity author profile when try to access single activity.
/** * Redirect user to user profile. */ add_action( 'bp_template_redirect', function() { if ( ! is_user_logged_in() && bp_is_single_activity() ) { $profile_link = trailingslashit( bp_displayed_user_domain() ) . bp_get_profile_slug(); bp_core_redirect( $profile_link ); } } );
Let me know it is works or not.
Regards
Ravi- Ravi on September 20, 2019 at 6:15 am in reply to: [Resolved] Disable Moderation of INTERNAL links in BP updates/replies #25386
Hello Vivek,
Thank you for postin. BuddyPress has a filter ‘bp_bypass_check_for_moderation’ validate your code with this filter. let me know if it works or not.
Regards
Ravi - Ravi on September 10, 2019 at 9:37 am in reply to: Disable BuddyPress Profile Completion on a specific context #25266
Hello Ahmed,
Thank you for posting. There is one hook which allows to skip profile completion. Please refer the following url:
Regards
Ravi - Ravi on September 4, 2019 at 7:22 am in reply to: Simple Front End Post – Make Category a Required Field #25199
Hello John,
Thank you for posting. Please refer the following URL:
There is a filter with name ‘bsfep_validate_post’ Using this you can make category as required field.
Regards
Ravi - Ravi on September 3, 2019 at 6:21 am in reply to: [Resolved] Having issues uploading an image in Activity page #25163
Hello Naly,
Sorry for the inconvenience. Please check is there any wall gallery created for the user who is uploading the images. Also check is images are uploading under mediapress directory in uploads folder.
Regards
Ravi- This reply was modified 5 years, 10 months ago by
Ravi.
- This reply was modified 5 years, 10 months ago by
- Ravi on September 2, 2019 at 1:03 pm in reply to: [Resolved] Simple Front End Post – iFrame Height Issue – mce-tinymce #25155
Thank You for the acknowledgement.
Regards
Ravi - Ravi on September 2, 2019 at 11:54 am in reply to: Remove Buddy Press "Settings" from top right #25153
Hello Liza,
You will get this setting if you are using “BuddyPress User Profile Tabs Creator Pro” plugin. It has this feature to remove item from admin bar.
For more info Please refer the following URL:
https://buddydev.com/plugins/buddypress-user-profile-tabs-creator-pro/Regards
Ravi - Ravi on September 2, 2019 at 11:47 am in reply to: [Resolved] Simple Front End Post – iFrame Height Issue – mce-tinymce #25152
Hello John,
Thank you for posting. Please modifying the “form.php” from the plugin and add extra parameter to wp_editor function.
just add like this.
wp_editor( $content, 'bp_simple_post_text', array( 'media_buttons' => $this->allow_upload, 'quicktags' => false, 'editor_height' => 400, ) );
Let me know if it works or not.
Regards
Ravi - Ravi on September 2, 2019 at 11:24 am in reply to: How to contact a group I am not a member of? #25151
Hello Torben,
For listing members according to their role. Please check the following template.
bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php
By this template you got the idea how to list members based on their membership in the group and implement this into groups/single/members template file.
For the first part: it need some custom work. Ask your developer.
Regards
Ravi