Search Results for 'wordpress'
-
AuthorSearch Results
-
December 18, 2015 at 4:41 pm #247871
In reply to: Friends widget
shanebp
ModeratorThere may be an issue with your theme.
You need to add the widget
http://www.wpbeginner.com/plugins/how-to-add-wordpress-widgets-in-post-and-page-content/December 18, 2015 at 11:17 am #247864Venutius
ModeratorThis is a generic WordPress error telling you it has ran out of allocated memory, the typical fix is in increase the memory size in your PHP.ini file though you may need the advice of your hosting provider as to exactly how you will do that.
Here is a typical setting
memory_limit = 256M
December 17, 2015 at 8:24 pm #247853In reply to: Trouble with custom activity function
synfrag
ParticipantI actually didn’t know about that, I’m fairly new to WordPress. I’ll certainly update that and the companion queries that go with it once I can get this function sorted out.
December 17, 2015 at 8:20 pm #247852In reply to: Trouble with custom activity function
Henry Wright
ModeratorI’m wondering why you’re writing a custom query to get user meta? That’s what the
get_user_meta()function is for.Ref: https://codex.wordpress.org/Function_Reference/get_user_meta
December 17, 2015 at 7:42 pm #247847In reply to: Start number of post on posts stream on page
Henry Wright
ModeratorIn that case, try asking here.
December 17, 2015 at 5:53 pm #247844Henry Wright
Moderatoris_page()has been problematic for me in the past (when using with BuddyPress) but I thought those problems had been resolved. Feel free to open a Trac ticket for this.December 17, 2015 at 3:55 pm #247840In reply to: Start number of post on posts stream on page
Henry Wright
ModeratorWhen you say posts, do you mean WordPress posts, or BuddyPress activity items? Both “streams” are different and will require different solutions.
December 17, 2015 at 8:53 am #247834In reply to: No notifications for replies
fried_eggz
ParticipantDone. Trac ticket is here
December 16, 2015 at 9:23 pm #247824In reply to: No notifications for replies
Henry Wright
ModeratorIn that case @fried_eggz, can you open a ticket for this on Trac?
December 16, 2015 at 3:46 pm #247810In reply to: No notifications for replies
fried_eggz
ParticipantYes @henrywright, the settings are correct.
Steps to repeoduce:
- Install vanilla WordPress 4.4
- Install vanilla BuddyPress 2.4.3
- Use default theme
- Post a status update
- Create a new user
- Log in as new user
- Comment on status
Just to be clear, I’m talking about notifications in WordPress toolbar. Have not checked if email notifications work since I’m on localhost.
December 16, 2015 at 10:26 am #247802Henry Wright
Moderator@mcpeanut I’m unable to test right now but can you give this a try on Twenty Fifteen or Twenty Sixteen and if the problem persists, would you mind opening a Trac ticket for this? Copying and pasting some of what you’ve wrote already should be fine.
The core devs might not see this forum topic.
December 15, 2015 at 1:41 pm #247779In reply to: List users in admin
shanebp
ModeratorThere are plugins for your task, such as
https://wordpress.org/plugins/recently-registered/December 15, 2015 at 4:01 am #247766@mercime
Participant@dopeboy What shanebp said. BuddyPress powers the 8.1 Million ++ user profiles at WordPress.org https://profiles.wordpress.org/dopeboy
December 14, 2015 at 7:57 pm #247753In reply to: Buddypress plugin does nothing…
ldesherl
ParticipantHi, Andrew:
I’m having the same issues; I use the same updated WordPress and this plugin does not work for me, either. I notice that you have not gotten support. Too bad they do not even offer email support. Not good.
December 14, 2015 at 7:10 pm #247750In reply to: Could not Save Basic Settings
ldesherl
ParticipantI tried this plug in last night but I could not ave the settings except on the last page for this plugin, on my dashboard.
The pages I set up, except for the titles, were 100 percet invisible.
My WordPress tells me, on top of the details page, that this plugin has NOT been requested with my updated WordPress.
I wanted to keep this plugin, and add a forum to my site but I can’t find any proper forum software.
My WordPress version is the most updated: 4.4
My website URL: http://oneladyfights4life.com
I apologize for this double post, as I forgot to mark that I forgot to check that I wanted to get replies by email and to check that option I had to double-post, and I cannot delete this second post.
December 13, 2015 at 4:39 pm #247716OsamaNuman
ParticipantI saw that there was a very similar problem on this link, but no final solution to it:
https://buddypress.org/support/topic/use-standard-wordpress-registration/when I remove the second snippet I still end up with an empty page with /register ending URL
December 13, 2015 at 1:26 pm #247714In reply to: Buddypress Post New Update Need Help Configuring
danbp
ParticipantHi,
basically, you can call the what’s new template part by using
bp_get_template_part( 'activity/post-form' );see doc here.Or try this plugin after you created a widget area on your homepage (so it will only display on that page):
https://wordpress.org/support/plugin/buddypress-sitewide-activity-widgetDecember 11, 2015 at 8:09 pm #247673r-a-y
KeymasterThere is a message meta table.
You can find those functions here:
https://buddypress.trac.wordpress.org/browser/tags/2.4.0/src/bp-messages/bp-messages-functions.php#L406I would probably piggyback on the marked as read functionality to do this though.
December 11, 2015 at 8:05 pm #247671In 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:
-
AuthorSearch Results