-
Henry Wright replied to the topic Set Birthday value buddypress in the forum How-to & Troubleshooting 10 years, 6 months ago
What did you get when you used
var_dump()? -
Hugo Ashmore replied to the topic z-index issue with 2014 and cover images in the forum How-to & Troubleshooting 10 years, 6 months ago
@joost-abrahams buddypress.css is patched to resolve the issue and should be included in 2.4.1, thanks again for highlighting and testing issue.
-
Henry Wright replied to the topic A Nicer Way To Edit Group Slugs in the forum How-to & Troubleshooting 10 years, 6 months ago
Even though the plugin hasn’t been updated for 2+ years, it’s built by @jjj (BuddyPress project lead who knows BuddyPress inside out) so it will be well-written. If you do spot anything, open a support ticket on the plugin’s forum.
-
Henry Wright replied to the topic Set Birthday value buddypress in the forum How-to & Troubleshooting 10 years, 6 months ago
How are you getting
$user_id? You should show us all of your code. My advice is to dump stuff to check where you’re going wrong. For example:var_dump( $user_id );
var_dump( $randDate ); -
Henry Wright replied to the topic How to programmatically set birhtday value and avatar in buddypress in the forum Creating & Extending 10 years, 6 months ago
Closing as a duplicate
-
Kinnovation's profile was updated 10 years, 6 months ago
-
Henry Wright replied to the topic Considering Buddypress- can the following be done through customization? in the forum Creating & Extending 10 years, 6 months ago
Hey @alessandrat
Welcome to the BuddyPress forum!
1. Have two separate front ends for different user types (with differently configured profiles), appearances, and accesses.
Yes. This can be done with either a plugin (try searching the Plugin Directory) or coded through the Member Types feature introduced in version 2.2.
2. Have a place where…
-
Hugo Ashmore replied to the topic BuddyPress 2.4.0 – Pietro in the forum Miscellaneous 10 years, 6 months ago
It was amusing but when working on twentythirteen I came to realise that once the header was replaced with something better, it actually was a simple and very effective theme especially for BP and I actually came to prefer it over the subsequent twentysomething themes.
-
Henry Wright replied to the topic Dismiss template notices after a few seconds in the forum How-to & Troubleshooting 10 years, 6 months ago
$handleis simply a name you give your script. I chosemy-custom-jsbut feel free to use any string you like.custom-scriptormaelga-jsare both suitable alternatives. -
Henry Wright replied to the topic Dismiss template notices after a few seconds in the forum How-to & Troubleshooting 10 years, 6 months ago
You could create a .js file in your child theme which you could use for all of your custom JavaScript. You’d then enqueue it with the following code (which goes into your child theme’s functions.php):
function my_enqueue_scripts() {[Read more]
wp_enqueue_script( 'my-custom-js', get_stylesheet_directory() . '/js/script.js', array(), '1.0.0', true… -
vahid mohammadi replied to the topic Fatal error: Call to undefined method stdClass::save() in the forum Installing BuddyPress 10 years, 6 months ago
How can we disable birthday extension when we don’t have access to dashboard?
-
Henry Wright replied to the topic How To Match BP Components With BP Pages? in the forum Installing BuddyPress 10 years, 6 months ago
Only for components that have a directory. Also, you will need to do that for the “register” and “activate” pages (this is all done via Settings > BuddyPress > Pages).
-
Julian M started the topic Warning notice from the plugin file in the forum How-to & Troubleshooting 10 years, 6 months ago
Hello. Im using default wp theme (Twenty Fifteen) and default BuddyPress plugin.
I got a warning:
[Read more]
"Notice: bp_setup_current_user was called incorrectly. The current user is being initialised without using $wp->init().
Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in… -
Hugo Ashmore replied to the topic z-index issue with 2014 and cover images in the forum How-to & Troubleshooting 10 years, 6 months ago
@joost-abrahams >2014 only exist on group pages, members pages no issues
Thanks for the testing, I’ll be adding a patch for BP styles later.
-
Amour Web Design's profile was updated 10 years, 6 months ago
-
Henry Wright replied to the topic Dismiss template notices after a few seconds in the forum How-to & Troubleshooting 10 years, 6 months ago
You could use the
setTimeout()JavaScript method for that:function delay() {
id = window.setTimeout(rm, 500);
}
function rm() {
// Remove the notice from the DOM.
var e = document.getElementById("id_of_the_notice");
e.parentElement.removeChild(e);
}Note:
500(milliseconds) can be changed.
id_of_the_noticemust be…[Read more] -
Henry Wright replied to the topic How To Match BP Components With BP Pages? in the forum Installing BuddyPress 10 years, 6 months ago
In the area titled Directories, only 3 components are shown. The opportunity exists to assign Pages to those 3. But what about the other 6 components I chose?
Not all components have directories. Take friends for example, that component doesn’t have a directory. However, members, groups and activity do.
-
Joost abrahams replied to the topic z-index issue with 2014 and cover images in the forum How-to & Troubleshooting 10 years, 6 months ago
More testing with fresh install WP4.3.1
Plugins active : buddypress, maintenance
theme test data imported
buddypress test data imported2013, 2015 themes no issues
2014 only exist on group pages, members pages no issues
-
Hugo Ashmore replied to the topic z-index issue with 2014 and cover images in the forum How-to & Troubleshooting 10 years, 6 months ago
As r-a-y says we’ll get a patch together for 2.4.1
-
Joost abrahams started the topic z-index issue with 2014 and cover images in the forum How-to & Troubleshooting 10 years, 6 months ago
Long dropdown menu’s in 2014 with cover images seem to have a z-index issue.

Menu disappears behind group-admin-info and group-description section.
Also scrolling down has z-index order issue see group header and menu.CSS used to resolve:
#buddypress #item-header-cover-image {
z-index: 1
}code from buddypress.min.css
WP4.3.1
BP2.4
Only…[Read more] - Load More