Search Results for 'wordpress'
-
AuthorSearch Results
-
December 11, 2015 at 8:05 pm #247671
In reply to: Why People Do Not Use RealNames/Images on Forums?
r-a-y
KeymasterYou can use your own profile image by associating your email address used on WordPress.org with Gravatar.com.
December 11, 2015 at 8:01 pm #247669In reply to: BP 2.4 breaks on page 2 of custom search results
r-a-y
KeymasterThanks for noticing this, kennibc.
I’ve attached a fix for this here:
https://buddypress.trac.wordpress.org/attachment/ticket/6770/6770.01.patchThe change you’ll be interested in is located in the
/bp-xprofile/bp-xprofile-filters.phpfile.December 11, 2015 at 12:44 am #247644In reply to: [Resolved] can anyone help me?
r-a-y
KeymasterDisable starring messages with this snippet in wp-content/plugins/bp-custom.php:
add_filter( 'bp_is_messages_star_active', '__return_false' );To remove the ‘Delete’ link from the messages inbox, you’ll have to override the inbox template and remove the ‘Delete’ link.
Read the Overloading Template Compatibility theme files section of this codex article for more info.
The template you’ll want to copy over to your theme to override is this one:
https://buddypress.trac.wordpress.org/browser/tags/2.4.2/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.phpDecember 10, 2015 at 2:43 pm #247618Henry Wright
ModeratorYou can open a bug report for this on Trac (the login details will be the same as those you use here in this forum).
December 9, 2015 at 11:31 pm #247606In reply to: Buddypress privacy for tabs
Henry Wright
ModeratorBP Simple Private might be helpful?
December 9, 2015 at 8:47 pm #247600In reply to: Cannot Access Pending User Page in WP
old account
ParticipantError: “You do not have sufficient permissions to access this page.”
This happens when clicking on ‘Pending’ in Users when BuddyPress is activated only on main site of multisite install but, you can see pending users at /wp-admin/network/users.php?page=bp-signups i.e. network side.
@imath posted a working patch for this issue which is scheduled for BP 4.4 branch (hopefully)
https://buddypress.trac.wordpress.org/ticket/5977Hope this helps.
December 9, 2015 at 7:02 pm #247598In reply to: Security issue: Need to contact devs
shanebp
ModeratorThis site does not support PM.
BP uses the same method for reporting security issues as WP:
December 9, 2015 at 6:57 pm #247597In reply to: Security issue: Need to contact devs
Henry Wright
ModeratorHi @hatherley
security [at] wordpress.org is the place to contact about this kind of thing.
December 9, 2015 at 12:58 pm #247579In reply to: Using wordpress registration
Alicia Fritz
ParticipantHi,
I use buddypress for my site but its login override default wordpress login box. I don’t want it because visitors will have to sign up twice.
Can I retrieve default wordpress login back and use buddypress login in my custom page (I want to put a CTA button in my homepage directing to a login page)?
Please let me know if I have submitted a question in the wrong thread.
Thank you.
Alicia Fritz Herman.
December 9, 2015 at 1:33 am #247568In reply to: Notification emails after import
shanebp
ModeratorRe WP cron jobs – use this to see what is running and scheduled:
https://wordpress.org/plugins/wp-crontrol/December 8, 2015 at 5:52 pm #247538In reply to: Notification emails after import
Henry Wright
ModeratorIf you’re running vanilla WordPress, with BuddyPress as the only plugin installed and you’re sure you have no custom code in place, it may mean your install has been compromised. You should check to be sure this isn’t the case.
Just a thought, have you tried using a standard theme such as Twenty Fifteen?
December 8, 2015 at 5:47 pm #247537Henry Wright
ModeratorThose pages don’t actually use CPTs at all which means you might not be able to use the
scripts_to_footer_post_typeshook in this case. Which scripts are you trying to move to the footer? It’s easy to move them manually (without the need for a plugin). When enqueuing the script, you set the 5th param ofwp_enqueue_script()totrue.Ref: https://codex.wordpress.org/Function_Reference/wp_enqueue_script
December 8, 2015 at 4:23 pm #247532Henry Wright
ModeratorSome plugin developers do require more recent versions of PHP but by doing that they limit their potential number of users. The solution could be for WordPress to add an admin notice “You are using an insecure version of PHP, please bug your host to upgrade”. Then once the stats indicate a small number of are users left on 5.2, they can stop supporting it. Note though, even a 1% figure for 5.2 could amount to millions of websites (considering the huge number of WP users overall).
Also, WordPress is doing lots already by working closely with hosts to make sure they’re all aware of the PHP version they’re offering and in cases where it is very outdated, urging the host to upgrade.
All that said, JavaScript is now coming into the game 😉
December 8, 2015 at 3:56 pm #247530Birgit Pauli-Haack
ParticipantTesting it with all plugins turned off and activating them one at a time it turns out WP-SpamShield was causing this persistent screen notification.
Posted it on WordPress.org support forum for plugin: http://bit.ly/1NfTXxvDecember 8, 2015 at 3:47 pm #247529In reply to: New Plugin: BP Simple Private
mcpeanut
ParticipantTy for this great plugin @shanebp i will try this later and leave a review on wordpress repo.
I may even be swayed to purchasing the premium version soon as the redirect would come in handy for me when restricting them.
December 8, 2015 at 1:54 pm #247517In reply to: Change password strength requirement
Venutius
ModeratorI think the new password restrictions were a WordPress feature, not BP
December 8, 2015 at 1:18 pm #247515Henry Wright
ModeratorAgreed @mcpeanut, the speed improvements alone are worth the upgrade. PHP 7 also has some useful features that us developers would love to use. Problem is, most cheap hosts will still be on something like 5.4 so we can’t use any of the new features in our plugins.
To get an idea what version of PHP WordPress users are on, take a look at these stats:
December 8, 2015 at 11:29 am #247514mcpeanut
Participantthere are various wordpress plugins that remove it completely or via useroles etc, do a search on the wordpress repository
do a search for this plugin maybe? Disable WP Admin Bar RemovalDecember 7, 2015 at 7:21 pm #247498In reply to: Notification emails after import
Henry Wright
ModeratorBP uses the
wp_mail()function to send email. Ref https://developer.wordpress.org/reference/functions/wp_mail/December 7, 2015 at 6:41 pm #247497In reply to: Custom Avatar Upload Page
operapreneur
ParticipantStill looking for any direction or examples where I can create a separate page (outside of the BP member registration or member profile) where members can upload and crop there avatar using the new BP_Attachment_Avatar introduced in 2.3.
The most help/up-to-date info seems to stem from this post.
@imath Would you be able to point me in the right direction? What is restricting the avatar from being uploaded on a page outside of the member profile?Thanks!
December 7, 2015 at 6:10 pm #247495In reply to: Notification emails after import
reedy
Participant@henrywright – My web host said there were only 164 messages in the queue last night when they looked. However, I know for a fact more than that are going out and that they’re going out every day for mentions that happened years ago. Does wordpress process this in batches or as a cron?
December 7, 2015 at 2:56 am #247485Henry Wright
ModeratorBuddyPress now includes PHP 7 in its tests so sites running PHP 7 should be covered:
Ref: https://twitter.com/JJJ/status/673520650624061441
Regarding taking advantage of PHP 7 features, the plugin won’t do that. Any feature introduced after PHP 5.2 won’t be in BuddyPress yet because 5.2 is the minimum requirement to run WordPress.
December 7, 2015 at 1:18 am #247483In reply to: hide bp toolbar
Stacy (non coder)
ParticipantPreferred not to hack each site’s theme or the bp plugin.
https://wordpress.org/plugins/admin-bar-disabler/
Removes the bp section as well. Can set by role or capability
December 6, 2015 at 9:00 pm #247463In reply to: I don’t understand the template files
Joshua Blevins
ParticipantCreating a child theme is not necessary. I figured out that if you create template files using the //Template Name you can go to the pages that BuddyPress makes and assign template pages to those pages. So you can create a file named activity.php and make it a template file and add the activity loop inside of that file. Once you have assigned that template to the Activity page in the WordPress dashboard you can then go to the BuddyPress settings and make sure that your Activity page is set up under the Activity drop down and save changes and it will work. I didn’t want to add unnecesary steps to making a single theme that did everything I needed. I will work on compiling a tutorial series on how to work with BuddyPress and then contribute it to the codex. Thank you for the response. Also if you look at the code in the BuddyPress plugin on the codebase you will see that bp-legacy is completely deprecated. There is compatibility code to not break old themes, but it is not the best way to do things.
December 6, 2015 at 2:40 pm #247457In reply to: Buddypress and IPV6
Paul Wong-Gibbs
Keymasterwp_bb_postsis bbPress 1, *not* BuddyPress. 🙂I don’t know if there’s anyone interesting in working on that old versions of bbPress any more. If you haven’t already, I’d suggest posting on https://bbpress.trac.wordpress.org/ so that at least the issue is logged.
-
AuthorSearch Results