Search Results for 'wordpress'
-
AuthorSearch Results
-
August 16, 2016 at 9:21 am #257664
Paul Wong-Gibbs
KeymasterDo other BuddyPress emails get sent?
Do WordPress emails get sent? (comment notification, new user registration, etc).August 16, 2016 at 8:16 am #257656sharmavishal
Participantperhaps this might help
https://wordpress.org/plugins/bbp-private-groups/screenshots/
August 16, 2016 at 8:12 am #257654August 15, 2016 at 1:36 pm #257626In reply to: Update custom table field when posting activity
Henry Wright
ModeratorIn order to update a custom table you’d need to use the wpdb class.
August 15, 2016 at 8:56 am #257620In reply to: Redirect does not work
danbp
ParticipantHi,
BuddyPress doesn’t handle registration. That’s WordPress territory.
You may read about WP two step authentication:
https://codex.wordpress.org/Two_Step_AuthenticationAnd here’s a tutorial from which you can built a multi step authentication:
Good luck !
August 14, 2016 at 1:48 pm #257607In reply to: Problem with change password and s2member
danbp
ParticipantDeactivate all plugins and the theme and test registering from WP using a Twenty theme as first.
Then activate BP and re-test.
Then activate S2 or whatever you use for paid membership and again, test.
And finally, you have to test your theme (if not a Twenty one).FYI, BuddyPress doesn’t handle the password field, but WordPress.
You’ll probably get better answers on WP or S2 support forum.August 14, 2016 at 12:32 pm #257604anonymousse2
ParticipantThank you @danbp for the plugin, but this one does not work. I nevertheless deactivated quite my plugins to part BP, nothing can be done we can always modify at will profile field. I also use the last version of BP and WordPress. My theme is SweetDate of SeventhQueen. What do I have to make now?
Thanks
August 13, 2016 at 5:53 pm #257591In reply to: Front-End Publishing
Earl_D
ParticipantThis one also looks good got updated today
https://wordpress.org/plugins/social-articles/August 12, 2016 at 8:58 am #257553In reply to: Activation email
Paul Wong-Gibbs
KeymasterEmails not sending have many possible causes. For the sake of clear discussion, please make your own topics, don’t bundle in on the same one.
@jtburlew Please check to see if your site sends WordPress emails reliably? (i.e. comment notification, password resets). Please also let me know what plugins you are using. Anything that changes POP3 or IMAP behaviour, or redeclares thewp_mailfunction, in particular.August 12, 2016 at 8:53 am #257550Paul Wong-Gibbs
Keymaster@imath has never reported with emails not sending from his French language WordPress sites, so I am assuming this is a server configuration problem – or incompatibility with something WPML is doing – rather than it being down to some character within the email string.
August 12, 2016 at 8:52 am #257549Paul Wong-Gibbs
KeymasterWhat plugins do you have active?
Does your site send WordPress emails reliably? (i.e. password resets, comment notifications)
August 11, 2016 at 1:22 am #257511In reply to: Does BuddyPress comply with disability W3C standards
@mercime
Participant@maryt66 You’re welcome. You can subscribe to the latest BP development news at https://bpdevel.wordpress.com/ or check out https://buddypress.org/blog/
Cheers.
MercimeAugust 10, 2016 at 2:54 pm #257498In reply to: Remove friendship-buttons title-tooltip
dolf h
ParticipantThank you @mercime. My solution mentioned above is working website-wide (and I like that):
<script type="text/javascript"> window.onload = function(){ var titled = document.querySelectorAll('[title]'); var numTitled = titled.length; var i = 0; for (i=0; i<numTitled; i++){ titled[i].removeAttribute('title'); } }; </script>I think I only need an Ajax refresh. Perhaps this plugin is suitable: https://wordpress.org/plugins/ajaxize/
I ‘ll give it a try.August 10, 2016 at 9:22 am #257491In reply to: Chinese Translation
Paul Wong-Gibbs
Keymaster(I’ve asked https://profiles.wordpress.org/petya to reach out to @idichoo to help get started with translations)
August 10, 2016 at 3:24 am #257474In reply to: Remove friendship-buttons title-tooltip
@mercime
ParticipantJust to note that the “add friend and cancel friendship” tooltips, among other tooltips have been removed in BP 2.7 trunk (see #7090).
August 9, 2016 at 11:11 pm #257467In reply to: Changing adminbar site-name url
Georgio
ParticipantFinally I could resolve the problem after reading this article
This developer suggests creating a plugin. The result is a link with a dashicon but it is not responsive. To make it responsive (show on mobile), I added in the css file of the plugin a snippet I fould elsewhere:
@media screen and (max-width: 782px) { #wpadminbar li#wp-admin-bar-XXX { display: block; } }Replace XXX with your id
August 9, 2016 at 7:59 pm #257462In reply to: How to add/make multiple “members” pages?
reneerodriguez
ParticipantSomething to that effect. I’m using this plugin here: https://wordpress.org/plugins/bp-member-type-generator/
August 9, 2016 at 7:13 pm #257461In reply to: Bug list member
mrjarbenne
ParticipantThe BuddyPress Plugin doesn’t apply any style when you hover over a suggested @mention. When using a default WP theme (which is what the BP developers base their testing on) there is no hover effect on the suggested username. Which indicates that it is probably something in the style of the theme you are using that is applying this additional effect.
The quickest way to see if it’s the theme or not, is to quickly change themes to one of the Twenty-xx themes that are packaged with WordPress, and if the hover effect disappears, you know where the problem is.
That’s only part one. The next part is to figure out where in the theme the issue is and patch it.
This might be helpful: https://www.studiopress.com/using-firebug/
August 9, 2016 at 6:07 pm #257456In reply to: Sorting Activity Stream by recent comments
mrjarbenne
ParticipantI haven’t tried this plugin in a few years, and it hasn’t been updated for a while, but it once did exactly what you are talking about.
https://wordpress.org/plugins/buddypress-activity-stream-bump-to-top/
August 9, 2016 at 1:51 pm #257453In reply to: Changing adminbar site-name url
mrjarbenne
ParticipantYou could customize the adminbar completely, using this snippet. I’m hiding the W menu, but you could probably hid the Sites menu and then add your own dropdown with the requisite links.
http://www.wpbeginner.com/plugins/how-to-add-edit-re-order-or-hide-wordpress-admin-menus/
/** * Adds custom "Home" menu to WP Adminbar. * * Also removes the "WP logo" menu. * * @param object $wp_admin_bar The WP Admin Bar object */ public function add_custom_parent_menu( $wp_admin_bar ) { /** * Removing the "W" menu */ $wp_admin_bar->remove_menu( 'wp-logo' ); /** * Create a "Home" menu. * * First, just create the parent menu item. */ $wp_admin_bar->add_menu( array( 'id' => 'commonlinks', 'parent' => '0', //puts it on the left-hand side 'title' => 'Home', 'href' => ('INSERT LINK HERE') ) ); /** * Add submenu items to "Home" menu. */ // Only show the following for logged-in users if ( current_user_can( 'read' ) ) { // Support link $wp_admin_bar->add_menu( array( 'id' => 'support', 'parent' => 'commonlinks', 'title' => 'Support', 'href' => ('INSERT LINK HERE') ) ); // Blog request form $wp_admin_bar->add_menu( array( 'id' => 'blogrequest', 'parent' => 'commonlinks', 'title' => 'Stuff', 'href' => ('INSERT LINK HERE' ) ) ); // Developers blog $wp_admin_bar->add_menu( array( 'id' => 'developments', 'parent' => 'commonlinks', 'title' => 'Developments', 'href' => ('INSERT LINK HERE' ) ) ); } }August 9, 2016 at 1:38 pm #257451In reply to: Lost password link and wrong password
mrjarbenne
ParticipantThe BuddyPress login widget is just a styled version of the WordPress login page. Hackers are still hitting the same database regardless of if they are finding your login widget — or more likely — blinding hitting your /wp-login.php page. wp-login isn’t being replaced here. If you are worried about brute force attacks, you should look into mechanisms created to protect WordPress (captchas, limit login attempts, etc.)
Replacing the WP login infrastructure with something else is a whole other matter, and something you would need to do on the WP side. As @djpaul mentioned, BP leaves that side of the site to the existing BP user management system.
August 9, 2016 at 12:47 pm #257450In reply to: Lost password link and wrong password
idichoo
ParticipantWell… I would prefer buddypress to inform user on wrong user id or password entered instead of redirect user to wordpress login. It will encourage for hacking. Do you have any ways to so that it doe not redirect to wordpress login but show wrong userid or password.
Thanks for your help.August 9, 2016 at 9:33 am #257374In reply to: Lost password link and wrong password
Paul Wong-Gibbs
KeymasterBuddyPress doesn’t affect user authentication or password resets. We leave that to WordPress.
WordPress’ lost password link can be found on the
.com/wp-login.phpscreen. You can copy that link into your theme/navigation menu, etc, if you want it elsewhere.August 8, 2016 at 3:51 pm #257359In reply to: [Resolved] BuddyPress killed my wordpress!
Paul Wong-Gibbs
Keymaster@skullchow To get your site back, you need to FTP (or SSH, or whatever — you should know how to do this) into your server. Go into the wp-content/plugins/ folder, and rename the
buddypressplugin tobuddypress-disabled. Then, visit your site’s plugins page (.com/wp-admin/plugins.php), and WordPress will fix itself.Then what you need to do is obtain your server’s PHP error logs. If you don’t know how to do this, ask your webhost for help. Inside it, it will be list whatever error was breaking the site. If you let us know what’s in the log, we can help figure out what broke things.
August 8, 2016 at 3:46 pm #257358In reply to: How to create a dynamic link to “my friends”
Paul Wong-Gibbs
KeymasterNot quite! In BuddyPress 2.6, we added support for dynamic links for user profiles.
In your template/blog post/wherever, if you wanted a link to go to the logged-in user’s activity stream (for example), create the link to
<a href=http://example.com/members/me/activity">my activity stream</a>.See https://buddypress.trac.wordpress.org/changeset/10791 for the change.
-
AuthorSearch Results