Search Results for 'wordpress'
-
AuthorSearch Results
-
August 9, 2016 at 11:11 pm #257467
In 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.
August 8, 2016 at 2:57 pm #257355In reply to: Chinese Translation
danbp
ParticipantGet in touch with the chinese translation team:
You don’t need to download GlotPress, you can translate BP online. Just go to https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/zh-cn/default and log-in.
And read the translators handbook to learn more about translating WordPress, plugins and themes.
If you prefer to read in chinese, see here: https://cn.wordpress.org/
August 7, 2016 at 9:09 pm #257323In reply to: [Resolved] auto-embed with in stream
danbp
ParticipantHave you tried to adjust the size via child theme’s CSS ?
Some examples here: https://en.support.wordpress.com/custom-design/custom-css-media-queries/August 6, 2016 at 4:58 pm #257295In reply to: Problem with cover in profile member
shanebp
ModeratorYou should ask the plugin author. Post your question on the support forum for BuddyPress Cover Photo.
If you are using BP v. 2.4 or greater, you don’t need that plugin – profile cover photos are part of BP.
August 5, 2016 at 6:48 pm #257282Earl_D
Participant@rvnamb if you aren’t looking to do programming you may want to check out some of the plugins here. https://wordpress.org/plugins/tags/recipes Some of them seem to integrate with Buddypress
August 5, 2016 at 4:46 pm #257279mrjarbenne
ParticipantIf you want to keep the activity updates, and add a separate form for recipes, you will probably need to explore Custom Post Types. You’ll need to register a post type called Recipes.
These might help:
https://codex.wordpress.org/Function_Reference/register_post_type
http://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/August 3, 2016 at 11:27 pm #257222In reply to: Conflicts with BuddyPress and Pemanent Links
mrjarbenne
ParticipantAs you have established that this is a WordPress issue, and not a BuddyPress one, you might be better to create a ticket over on wordpress.org, where there are more eyes looking at your ticket.
August 3, 2016 at 11:25 pm #257221In reply to: [Resolved] Check if on profile of an admin?
mrjarbenne
ParticipantIf I’ve read this wrong and you are just trying to sort out who an admin is, the best way to check for a role is via user capabilities (https://codex.wordpress.org/Roles_and_Capabilities). So checking to see if the users can “activate_plugins” will let you identify whether they have the admin role or not.
August 3, 2016 at 8:01 pm #257215In reply to: [Resolved] Check if on profile of an admin?
mrjarbenne
ParticipantYou could use something like this to add a badge to admin/verified users.
August 3, 2016 at 7:30 pm #257212In reply to: Conflicts with BuddyPress and Pemanent Links
mrjarbenne
ParticipantYour htaccess file should be set to 644: https://codex.wordpress.org/Changing_File_Permissions
August 3, 2016 at 7:18 pm #257209In reply to: Featured Member Plugin
mrjarbenne
ParticipantI would suggest checking out this one, which will work for members, but can also be leveraged to feature other content as well:
August 3, 2016 at 5:14 pm #257205In reply to: BuddyPress REST API Question
modemlooper
ModeratorThis would be a lot of custom development. Read this post about consuming external API in WordPress http://ben.lobaugh.net/blog/46117/wordpress-interacting-with-external-apis
August 3, 2016 at 5:10 pm #257202In reply to: Some profile tabs won’t translate
r-a-y
KeymasterThe
Notifications %sstring looks like it is available:
https://plugins.svn.wordpress.org/buddypress/tags/2.6.1.1/buddypress.potIf you’re using a custom translation from a previous version, you need to merge your language files together. Here’s a quick tutorial I found on Google:
http://www.marketpressthemes.com/blog/how-to-merge-two-po-files-using-poedit/You might also benefit from a translation that is already available here:
https://translate.wordpress.org/projects/wp-plugins/buddypressAugust 3, 2016 at 5:43 am #257192In reply to: Conflicts with BuddyPress and Pemanent Links
delfindelfin
ParticipantHow do I know if my server is able to write to the
.htaccessfile? The content of the file is:Options +FollowSymlinks # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressStill I have the same error. I think you are right, it’s a WordPress issue
August 2, 2016 at 5:24 pm #257180In reply to: Conflicts with BuddyPress and Pemanent Links
r-a-y
KeymasterI don’t believe this is a BuddyPress issue. When you change your permalinks, are you able to visit a regular WP post permalink? If not, it’s a WordPress issue.
I would say make sure your server is able to write to the
.htaccessfile.Also, you might have to alter your
.htaccessfile to add the following to the top of the file:Options +FollowSymlinksAugust 2, 2016 at 9:07 am #257171In reply to: Duplicate xProfile Field on Edit Profile Page
Paul Wong-Gibbs
KeymasterYes. There’s some sort of bug in the W3 Total Cache’s object cache file. Last time a few of us looked into it, we didn’t figure out what the problem was. However, we tested several other object cache loaders (I think https://github.com/tollmanz/wordpress-pecl-memcached-object-cache and https://wordpress.org/plugins/wp-redis/) and the problem did not exist. i.e. it’s a problem with W3TC.
I don’t have any advice other than the unhelpful “don’t use W3TC for object caching”. 🙁
-
AuthorSearch Results