Search Results for 'wordpress'
-
AuthorSearch Results
-
January 31, 2019 at 3:25 pm #302508
In reply to: Hide a profile without photo
Leo Nelson
ParticipantI have a solution for that. Recently in one of my Survey site which is https://surveyexperiences.com I have added few authors and for them I am using Gravatar. You can also search for Avatar Plugin in WordPress Plugin Directory.
Let me know is it helpful for you or not?
Regards,
LeoJanuary 30, 2019 at 7:06 am #302477In reply to: Activation email not sent
ashley72
ParticipantI can add a bit more to this. I have checked my wp_mailfunction on my wordpress. Using a simple php script.https://www.butlerblog.com/2012/09/23/testing-the-wp_mail-function/
The mail is sending out as expected for several different email addresses I tried using wp_mail. So if BuddyPress uses the wp_mail function – the default installation must have configuration problem.
January 30, 2019 at 6:12 am #302476In reply to: Activation email not sent
ashley72
ParticipantI have the same problem. The lack of community support makes me feel this plugin may not be worth the effort.
When you check the manage signups the new registered user is awaiting to be activated. It shows that an email has been sent. After you try and resend the activation email. It does trigger and add to the count – showing two emails sent. So it would seem most of the functionality is working. If I deactivate the plugin, my wordpress email notifications is working. I’ve checked the spam folder, and even tried non-gmail accounts and still getting no activation emails at all. However, I have received a buddypress notification when another member does a mention. So it appears some kind of small bug is the problem.
Does any of the core developers for BuddyPress check theses support forums?
January 29, 2019 at 1:45 pm #302465In reply to: Regarding Searching Member Directory
shanebp
ModeratorThe easiest approach, imo, would be to remove the current member search input from the members directory.
For example, create an overload of this file and delete the code re member search:
buddypress\bp-templates\bp-legacy\buddypress\members\index.phpThen get this plugin: BP Profile Search
And configure a custom member search that only includes the fields you want.January 28, 2019 at 5:03 pm #302449In reply to: visibility options bug?
msteimann
ParticipantI think you’ve identified a bug with the registration form, it misleadingly gives the impression that the visibility for the Name field can be changed. Wuld you mind raising a bug report on https://buddypress.trac.wordpress.org/ ? Also you can use the same link to raise your feature request.
Thank your for looking into this, Venutius. Good to know that I can now raise a bug report, and a feature request as well. Thank you and your team for putting so much effort into this really great plugin!
January 28, 2019 at 3:11 pm #302445In reply to: visibility options bug?
Venutius
ModeratorI think you’ve identified a bug with the registration form, it misleadingly gives the impression that the visibility for the Name field can be changed. Wuld you mind raising a bug report on https://buddypress.trac.wordpress.org/ ? Also you can use the same link to raise your feature request.
January 27, 2019 at 8:24 pm #302425In reply to: remove ‘last active’ status
artluverr
ParticipantI had to disable my child theme temporarily for some other issues after a recent theme/wordpress update and have lost some of my customizations. Becasue of this I now have the same issue but I don’t want it to show in the directory. I managed to remove it from my profile pages. I am using bp legacy though not nouveau. I tried your snippet with the snipit plugin and then tried it by editing the snipet to say buddypress_legacy but still not working. Any thoughts?
I also noticed that now on the right column people’s names wrap right like they are doing on that page if the screen is full? Any snipits for that that I can use until I get my child theme back running properly?
January 26, 2019 at 11:14 pm #302418Topic: Redirect Register?
in forum How-to & Troubleshootingjstande
ParticipantIf the following is to redirect Registration from BP to WP, what would redirect from BP to [Peepso_Register] ? And exactly where would I put it?
(Any reason why nobody has developed options to turn everything on or off in BP since it is so integrated with other themes and plugins?)
/*disable registration bp */
function my_disable_bp_registration() {
remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
}
add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
function firmasite_redirect_bp_signup_page($page ){
return bp_get_root_domain() . ‘/wp-login.php?action=register’;
}Version 4.1.0 BuddyPress
Version 5.0.3 WordPressJanuary 25, 2019 at 8:27 pm #302412In reply to: Activation emails partly translated
shanebp
ModeratorI have even modified the original message in bp-core-functions.php
There are 4 instances of that string in that file. Did you change all of them ?
As you should know – editing core files is not a good idea.
That string is in thebuddypress.potfile.
And it seems to be in thebuddypress-fr_FRfiles.So I do not know why you are having issues.
Have you tried using the Repair Tool – …/wp-admin/tools.php?page=bp-tools>Reinstall emails (delete and restore from defaults).January 25, 2019 at 8:06 pm #302410In reply to: How to output a topic list using the main loop
shanebp
ModeratorPlease ask questions about bbPress on their support forums.
It’s not easy to figure out what you are doing – or more importantly why.
I suggest you not use
pre_get_posts.
Instead write your own WP_Query on your custom page.This thread is now closed due to being off-topic for these forums.
January 24, 2019 at 4:28 pm #302385In reply to: Category & Tag
shanebp
ModeratorThis is a BuddyPress forum.
Questions specific to WordPress should be asked on the WP support forums.January 23, 2019 at 11:12 pm #302378In reply to: Plugins not being updated
ghayward805
ParticipantThe lack of recent updates, plus the notice that they have not been tested with the recent versions of WordPress. You feel confident they are safe to use and will continue to be supported?
January 23, 2019 at 1:42 pm #302361shanebp
ModeratorI cannot duplicate your issues. There is something else happening on your installation.
With the code in place I’m unable to search the user database in the WP dashboard – instead of search results it displays a blank page.
The blank page indicates an error.
You could turn on WP Debug and then try another search and then check your error log. Once you’ve generated the errors, you can turn off debug.January 22, 2019 at 9:28 pm #302354In reply to: Error message Call to undefined function
Venutius
ModeratorPossibly the issue is that it’s trying to call that function to early in the wordpress load process.
January 21, 2019 at 8:48 pm #302331In reply to: Groups not Working after migration
Varun Dubey
Participant@designcornerdev Multisite database has lots of tables which are not covered by site-specific search and replace plugin in most of the cases. You can try https://interconnectit.com/products/search-and-replace-for-wordpress-databases/. Make sure you have a database backup before doing any real changes inside the database.
January 20, 2019 at 3:16 pm #302314In reply to: Message was not sent. Please try again.
shanebp
ModeratorIt’s difficult to debug from just that error message.
But it is a generic error that is only sent when the message fails and the error is not a WP error.
From your description, the error is specific to a single site, so something has changed on that site or on your hosting plan.
Using WP_DEBUG may give more info.January 18, 2019 at 12:22 pm #302290In reply to: BuddyPress on hosted shared server
Varun Dubey
Participant@vivekmathur1969 you can migrate site or upgrade to VPS anytime just like regular WordPress website migration.
January 18, 2019 at 11:08 am #302289In reply to: BuddyPress on hosted shared server
vivekmathur1969
ParticipantHi, I’m even newbier (?) than @cvtbrian in that I’m just starting up with a brand new community (ie zero traffic), and plan to use Buddypress + Woocommerce, plus maybe 20-25 other plugins. I was planning to sign up for Managed WordPress hosting by Godaddy, but then i read in the BP codex/ getting started that “WordPress should be installed manually i.e. via FTP, cpanel, etc. and NOT via webhost scripts (fantastico, softalicious, etc.)which bring about numerous issues when BuddyPress is activated” – and apparently teh managed hosting doesnt allow that, so the Godaddy rep told me then i need to look at Linux hosting.
Has anyone tried BP with Godaddy Managed hosting, and would it be okay to start with shared hosting considering traffic will be very low initially (but BP+WC+plugins would need to work reasonably fast)?
If i take shared hosting now, will it be easy to move to VPS later as traffic increases?
thanks a ton for any inputs!January 17, 2019 at 3:36 pm #302274In reply to: Buddypress Tab names
Varun Dubey
Participant@lunarayven You can check following codes and use them with Snippet plugin
Change “Activity” component’s name and slug to something else.
Other references of “activity” string at the frontend can be translated using Loco Translate
January 16, 2019 at 9:29 am #302257In reply to: vimeo video whitespace
Venutius
ModeratorOn my test system, posting that into activity does not result in an embedded video, just a link to the video. BuddyPress does not handle video and in order to have it embed then something else is running in order to do that. It could be WordPress itself as it has embed functionality but looking at the CSS of the embedded video on your site it does not look like WordPress, it looks like there’s a plugin doing it.
January 15, 2019 at 5:46 pm #302237In reply to: Groups listing to bottom of page
shanebp
ModeratorYour issue is specific to your installation. And nobody will register on your site so that they can see
the page in question.Given that you are using Avada and the Shortcodes for Buddypress plugin – there is very little chance that anyone here can help you.
> … list the groups to this page within the setting …
Sounds like an issue with Avada > BuddyPress
For that page, rather than use Avada to build the page, you may need to create a page and assign a hand-coded template to it.
There is lots of info on how to do that.
For example: https://ithemes.com/tutorials/applying-wordpress-page-template/January 15, 2019 at 2:50 am #302219In reply to: Permalink Crash
shanebp
ModeratorDo not ever – EVER – post your admin credentials on a public web page.
[ Would you hand a copy of your house keys to ‘x’ number of random strangers you pass on the street ? ]
I have removed the credentials and replaced them with the error message that you are seeing.
I don’t have a solution to your issue.
I suspect the BuddyPress prompt to reset the permalinks is a symptom of an WordPress issue in your installation.
You might try asking on the https://wordpress.org/support/ forums.January 14, 2019 at 1:52 pm #302206In reply to: Hiding register option from logged in users?
Varun Dubey
Participant@sanusalim If you have added register page as a menu, you can hide using https://wordpress.org/plugins/nav-menu-roles/ via menu specific option.
Make sure you have disabled “Anyone can Register” from Setting >> General
http://prntscr.com/m70i4sJanuary 12, 2019 at 7:45 am #302189In reply to: Why i cannot use it with page id?
qnkov
ParticipantI need to have the default page id ON, cuz all my images, and alot of pages with plugins brokes if i use other option. Isn’t there anyway buddypress to work with page id actived? That’s the default option for wordpress, i don’t know why it’s not working with it.
January 11, 2019 at 10:43 pm #302183In reply to: Error in LearnDash after upgrade BuddyPress
shanebp
ModeratorDid you ask LearnDash re whether they have tested with the latest BP?
Did you try switching to a WP theme like 2017 to see if the issue is in your preferred theme?Did you examine your error logs?
Did you try using WP_Debug ?
https://codex.wordpress.org/WP_DEBUG -
AuthorSearch Results