-
Brajesh Singh replied to the topic Can not see members in the forum How-to & Troubleshooting 5 years, 7 months ago
Hi,
Thank you for the screenshot and the screencast. I can see the issue now.The “Members” page is not part of “BuddyPress” section of the nav menu screen. It is part of your normal “Pages” section.
The “BuddyPress” box allows you to add link for logged in user’s profile tabs(or login/register link for logged out users).
If you want to add…[Read more]
-
Brajesh Singh replied to the topic Can not see members in the forum How-to & Troubleshooting 5 years, 7 months ago
Hi Anders H,
Please leave that content empty. BuddyPress will generate the members list automatically.
Once you have created this page, Please visit Dashboard->settings->BuddyPress and open the “Pages” tab.
Make sure you select this page in the “Members” option and it will work.Best regards
Brajesh -
Brajesh Singh replied to the topic Member search in mutiple profile fields in the forum How-to & Troubleshooting 5 years, 9 months ago
Hi,
Please have a look at BP profile searchThis should help you with achieveing your goal.
Best regards
Brajesh -
Brajesh Singh replied to the topic Best way to remove or redirect away from sitewide /activity to profile activity? in the forum Installing BuddyPress 5 years, 10 months ago
Hi,
Before deciding to redirect from sitewide activity to user’s own activity you should know the difference between them and then decide.– On the sitewide page a user can see activity from whole site(including his won/friends/his groups and any non related member of the site)
– On profile, a user can see his/her won activity as well as…[Read more]
-
Brajesh Singh replied to the topic Copy buddypress files into child theme in the forum How-to & Troubleshooting 5 years, 10 months ago
You are welcome 🙂
-
Brajesh Singh replied to the topic Copy buddypress files into child theme in the forum How-to & Troubleshooting 5 years, 10 months ago
Oops, did not see that @venutius already replied .
-
Brajesh Singh replied to the topic Copy buddypress files into child theme in the forum How-to & Troubleshooting 5 years, 10 months ago
Do you want to override template files? If yes, the first step is to find out which template pack you are using(Dashboard->settings->BuddyPress->Options).
BuddyPress comes with 2 template packs
– BP Legacy
– BP NouveauOnce you know the template pack, you can follow the following step
1. create a directory named “buddypress” in your theme
2.…[Read more] -
Brajesh Singh replied to the topic Error in adding members to groups in the forum Creating & Extending 5 years, 11 months ago
Hi,
It is a bug in BuddyPress 4.0.BuddyPress 4.1 is coming soon and will have it fixed.
Please see the ticket for more details.
https://buddypress.trac.wordpress.org/ticket/8012Regards
Brajesh -
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Thank you @samtuke, Please do and let me know how it goes.
@dopeboy,
Thank you for sharing your code. The issue is with youzer form generation and I am unable to suggest a fix as the only part I can see is call to form generator in the activate.phpSince the form generator is not visible to me, I will suggest contacting the plugin developer and…[Read more]
-
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Do you have activate.php in the plugin? If yes, Please post on pastebin.
-
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Thank you.
Since I don’t use Youzer, I will suggest asking the support for this plugin to look into it.My guess is either they are doing a redirect or filtering out your template and replacing with their own while their activate template is not updated and that’s why it is happening.
Regards
Brajesh -
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Thank you.
My first suggestion will be to try disabling the LH Private BuddyPress, if that does not solve it you should try deactivating Youzer and BP Force Profile photo(assuming bp-custom.php) and child theme’s functions.php does not have any redirection.
Please give it a try and let me know if any of the above resolves the issue?
-
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Hi,
is there anything special about the site? Like any redirection setup or content restriction?
When you open the link, does it remain the same or do you get redirected to some other url?I have tested with BuddyPress 3.2 and can see that the link of format
http://example.com/activate/qwLW319TDBVVJs7DkSZ4NK6OjWhrUNLt/
auto fills the key entry…[Read more]
-
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Hi,
Your code is correct.Can you please post me a sample link that you have received in your email? Also, are you using any content restriction/redirection plugin?
-
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Hi,
Thank you for the details. No need for the site link.Can you please post the code from your wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/activate.php and post the code on pastebin.php and link me.
Regards
Brajesh -
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Thank you for the details. No need to change the theme.
Can you please visit the Dashboard->Settings->BuddyPress and tell me which template pack is active? I will need one more detail after that to assist you.
Regards
Brajesh -
Brajesh Singh replied to the topic Users are asked for Activation in the forum Installing BuddyPress 6 years ago
Hi,
The way the activation link and the input is filled changed in 3.0.If you are using a custom theme or have a copy of activate.php in yourtheme/buddypress/members/, you will need to update it.
Please open the file yourtheme/buddypress/members/activate.php in an editor and look for a line like this
[Read more]
<input type="text" name="key" id="key"… -
Brajesh Singh replied to the topic Dequeue bp-nouveau css in the forum How-to & Troubleshooting 6 years, 1 month ago
No Problem.
You are welcome. Glad it worked for you 🙂Best regards
Brajesh -
Brajesh Singh replied to the topic Dequeue bp-nouveau css in the forum How-to & Troubleshooting 6 years, 1 month ago
It’s strange. Anything after 10 should work.
yes, is almost same(I simply removed the admin check as it was not needed in this case).I tried the code in bp-custom.php and it is working with the default theme.
Are you using some custom theme?
-
Brajesh Singh replied to the topic Dequeue bp-nouveau css in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Try using this
/**
* Dequeue BP Nouveau style
*/
function buddydev_dequeue_nouveau_styles() {
wp_dequeue_style( 'bp-nouveau' );
}add_action( 'wp_enqueue_scripts', 'buddydev_dequeue_nouveau_styles', 11 );
Does it work for you?
- Load More
@sbrajesh
Active 1 year ago