-
Boone Gorges replied to the topic Pagination for Custom Loop in New BuddyPress Tab in the forum How-to & Troubleshooting 6 years, 12 months ago
I’m not sure that
previous_posts_link()
andnext_posts_link()
will work in the context of a customWP_Query
loop. See https://wordpress.stackexchange.com/questions/20424/wp-query-and-next-posts-link for a pointer. -
Boone Gorges replied to the topic Change Profile Photo NO WEBCAM in the forum How-to & Troubleshooting 6 years, 12 months ago
To be clear, you should see a ‘Take Photo’ link next to ‘Upload’ in the Change Profile Photo interface. See https://postimg.org/image/8q5qy769z/
A first check: Look at the source of the page and search for the string
camera_warnings
(which should be a list of error messages). If you don’t see this, then it’s likely that another plugin is…[Read more] -
Boone Gorges replied to the topic Scheduling post – missing activity in the forum How-to & Troubleshooting 6 years, 12 months ago
Hi @humiges – Are the posts themselves being published on schedule? If I understand you correctly, the posts are being published but the corresponding activity items are not being created. Is that correct?
I just checked, and it does appear that activity items generally *are* created for scheduled posts, at the time of publishing. So what you’re…[Read more]
-
Boone Gorges replied to the topic Blink my avatar in the forum Creating & Extending 6 years, 12 months ago
Hi @autox420 – The first answer to this question https://stackoverflow.com/questions/21203526/hide-unhide-div-with-button shows a technique that you can use to add a button like this to your theme.
-
Boone Gorges replied to the topic How to Add Username to Menu in the forum How-to & Troubleshooting 6 years, 12 months ago
Not sure if this is directly related to what you’re trying to do, but I wrote a post about dynamically adding items to a WP menu a couple years ago, which demonstrates some of what Henry has mentioned above: https://teleogistic.net/2013/02/11/dynamically-add-items-to-a-wp_nav_menu-list/
-
Boone Gorges replied to the topic Problem in mobile appearance with the toolbar line in the forum Installing BuddyPress 7 years ago
Glad you found the problem!
-
Boone Gorges replied to the topic Groups not displaying properly in the forum How-to & Troubleshooting 7 years ago
Don’t abandon the Groups functionality or BuddyPress over this small display issue! With a plugin like this https://wordpress.org/plugins/simple-custom-css/, it is trivial to add the CSS that I gave above.
Building a child theme is more complex, and is something you should learn down the road if you plan to make extensive customizations. But if…[Read more]
-
Boone Gorges replied to the topic Groups not displaying properly in the forum How-to & Troubleshooting 7 years ago
I should note that, if you are at all uncomfortable with building a child theme, then you should instead use Jetpack’s Custom CSS module (or a similar plugin). While building a child theme is pretty straightforward once you’re used to it, it can be intimidating at first and has the potential to break your site (temporarily!) if not implemented correctly.
-
Boone Gorges replied to the topic Groups not displaying properly in the forum How-to & Troubleshooting 7 years ago
No – you have put it inside the comment marks that indicate the stylesheet header. Move it below this:
*/
Then you have to actually activate the them. It looks like you are still running the
parabola
theme. -
Boone Gorges replied to the topic Send email notification after user delete account in the forum How-to & Troubleshooting 7 years ago
I don’t know of an existing tool to do this, but you could create it yourself. Use the ‘delete_user’ hook, which fires just *before* the user account is actually deleted; you’ll need to do it this way so that you still have access to the email address. Something like:
[Read more]
add_action( 'delete_user', function( $user_id ) {
$user = new WP_User(… -
Boone Gorges replied to the topic Groups not displaying properly in the forum How-to & Troubleshooting 7 years ago
Thanks for the link. It does appear that the
margin-top
property is the culprit.Here is the CSS that should fix it:
body.single-item.groups #buddypress div#item-header #item-header-cover-image #item-header-content, body.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions {
margin-top: 0px;
}
I don’t…[Read more]
-
Boone Gorges replied to the topic Whos online widget .css in the forum How-to & Troubleshooting 7 years ago
If your theme uses bp-legacy theme templates, then the styles for the Who’s Online widget are in buddypress/bp-templates/bp-legacy/css/buddypress.css.
BuddyPress does have a lot of files, but it’s organized according to pretty specific principles, and I don’t think it qualifies as “messy”. In any case, for the purposes of CSS, you can always…[Read more]
-
Boone Gorges replied to the topic Latest version (2.9.2) breaks wishlist Membership and Revolution Slider in the forum Installing BuddyPress 7 years ago
Ah yes, thanks for that.
It looks like your theme is loading scripts from BuddyPress, but is using an old path for these scripts. (BP changed the paths a couple versions ago. See https://buddypress.trac.wordpress.org/changeset/11009.) Look in your theme – probably in functions.php – to see how it’s loading the cookie, caret, and atwho scripts.…[Read more]
-
Boone Gorges replied to the topic Put user descripton under avatar in whos online in the forum How-to & Troubleshooting 7 years ago
Excellent – thanks for reporting back!
-
Boone Gorges replied to the topic BuddyPress email problem in the forum Installing BuddyPress 7 years ago
You may be able to disable the linking in the admin. Go to Dashboard > Users > Profile Fields. Find the Email field, and click Edit. On the right-hand column, find the “Autolink” metabox. Switch it to ‘Disabled’ and save.
-
Boone Gorges replied to the topic Show id user in Screen Option admin backend in the forum Installing BuddyPress 7 years ago
Check out this tutorial: https://rudrastyh.com/wordpress/get-user-id.html#user_id_column
-
Boone Gorges replied to the topic customize members page in the forum How-to & Troubleshooting 7 years ago
> i created customed fields for the inner-page of the user, but they don’t show in the members list page.
The details depend on how you created these “customed fields”. If they are xprofile fields, then the simplest way is to do this:
[Read more]
$user_id = bp_get_member_user_id();
$data = xprofile_get_field_data( 'Custom Field Name', $user_id );
if ( $… -
Boone Gorges replied to the topic Put user descripton under avatar in whos online in the forum How-to & Troubleshooting 7 years ago
Your problem is probably
bp_displayed_user_id()
. This returns the ID of the user whose profile you’re currently viewing – that is,example.com/members/username
.Within a
bp_has_members()
loop, usebp_get_member_user_id()
instead. -
Boone Gorges replied to the topic Latest version (2.9.2) breaks wishlist Membership and Revolution Slider in the forum Installing BuddyPress 7 years ago
Can you say how the slider is “broken”? I just clicked on the link and it seems to be working OK.
You might consider opening your JS console (generally, press F12 and hit the Console tab) to see if you find any JS errors that might be triggering something to break.
-
Boone Gorges replied to the topic Change mentionname to displayname in "cover-image-header.php" in the forum How-to & Troubleshooting 7 years ago
Cool – thanks for reporting back!
- Load More
@boonebgorges
Active 1 year, 3 months ago