-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
I am using legacy template. I will edit edit.php and will get back to you.
That’s why code did not worked because it was for new template pack. Anyways, it’s ok your code is fine. For legacy we have
do_action( 'bp_after_profile_field_content' );
anddo_action( 'bp_after_profile_edit_content' );
hooks.Thanks
-
Prashant Singh replied to the topic Registration notice, manual activation in the forum How-to & Troubleshooting 6 years, 1 month ago
Glad to know that it is fixed 🙂
-
Prashant Singh replied to the topic Private Blogs in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
If you can change the button link then certainly this should help:
<a href="<?php echo get_author_posts_url( get_current_user_id()); ?>">See Posts</a>
Thanks
-
Prashant Singh replied to the topic remove 'last active' status in the forum How-to & Troubleshooting 6 years, 1 month ago
If it is child theme then it’s fine otherwise please cut it from there and use this plugin https://wordpress.org/plugins/code-snippets/ to add a new snippet and then paste it there.
Thanks
-
Prashant Singh replied to the topic Classified Ads & Musician directory. in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
This is not BuddyPress plugin but please see: https://wordpress.org/plugins/advanced-classifieds-and-directory-pro/
You can use this plugin https://wordpress.org/plugins/wc4bp/ to manage accounts and all through profile. But for this you have to use woocommerce to sell things.
Thanks
-
Prashant Singh replied to the topic Add link to BP Navigation in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try this snippet:
function ps_setup_nav() {
global $bp;bp_core_new_nav_item( array(
'name' => __( 'My Account', 'buddypress' ),
'slug' => 'my-account',
'position' => 30,
'screen_function' => 'ps_account_page',
) );
}add_action( 'bp_setup_nav', 'ps_setup_nav'…[Read more]
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Which template pack of BuddyPress you are using?
-
Prashant Singh replied to the topic Is integration with MailPoet possible? in the forum Third Party Plugins 6 years, 1 month ago
ok
-
Prashant Singh replied to the topic Can not react – icons in the forum How-to & Troubleshooting 6 years, 1 month ago
Have you tried disabling plugins that I suggested?
-
Prashant Singh replied to the topic update button in the Activity stream disappears in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please let me know when you click in text area then it is coming or not?
Thanks
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Glad that it helped you 🙂
Yes, please use this snippet:
add_action('member-profile-edit', 'ps_exit_button');
function ps_exit_button(){
?>
<button type="button" name='exit' class='edit-exit' value="Exit"> Exit </button>
<?php
}
add_action('wp_footer','ps_redirect_exit_profile');function…[Read more]
-
Prashant Singh replied to the topic Registration notice, manual activation in the forum How-to & Troubleshooting 6 years, 1 month ago
Sure 🙂
-
Prashant Singh replied to the topic remove 'last active' status in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try this snippet:
add_filter( 'bp_nouveau_get_member_meta', 'ps_remove_last_active',10,3 );
function ps_remove_last_active ( $meta, $member, $is_loop ){
$meta['last_activity'] = '';
return $meta;
}Hopefully, it will help you.
Thanks
-
Prashant Singh started the topic BP Custom Functionalities Plugin Released in the forum Showcase 6 years, 1 month ago
https://wordpress.org/plugins/bp-custom-functionalities/
The plugin basically covers four features now:
- Locking BuddyPress for guest users.
- Restricting BuddyPress Access Based on Paid Membership Pro Membership Levels.
- Excluding members based on user roles from members directory.
- Private profile – that means one member can not see other m…
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
Please send the screenshot or a screencast showing the process
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please comment out the code. I will check back what’s the issue there.
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
<?php
/**
* BP Nouveau Messages main template.
*
* This template is used to inject the BuddyPress Backbone views
* dealing with user's private messages.
*
* @since 3.0.0
* @version 3.1.0
*/
?>
<div class="subnav-filters filters user-subnav bp-messages-filters" id="subsubnav"></div><div class="bp-messages-feedback"></div>
<div…[Read more] -
Prashant Singh replied to the topic Registration notice, manual activation in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please create a file bp-custom.php in wp-content/plugins folder and then put it there. If you want an easy solution then install this https://wordpress.org/plugins/code-snippets/ plugin and then add a snippet and paste this code there and save it.
For loco if you have already installed it then go to the menu loco in dashboard and then…[Read more]
-
Prashant Singh replied to the topic What is the best way to change "Friends" to "Contacts" sitewide..? in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please check this plugin https://wordpress.org/plugins/loco-translate/
Using this plugin just go to it’s plugins menu and open BuddyPress there and then in your prefered language file find the word and replace it with your text.
Hopefully, it will help you.
Thanks
-
Prashant Singh replied to the topic Profile field groups tabs while editing profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
No need to edit any template. I have created a snippet for you. Please paste the following snippet in your child theme’s functions.php file:
function ps_redirect_next_group() {
if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) {
return;
}$group_id = bp_get_current_profile_group_id()+1;
if (…[Read more] - Load More
@prashantvatsh
Active 3 months, 3 weeks ago