Search Results for 'wordpress'
-
AuthorSearch Results
-
January 11, 2013 at 3:18 am #150257
In reply to: installation wizard failing
@mercime
ParticipantUsing 1.6.2 version of BuddyPress, as well as WordPress 3.3.1
@bkvwordpress BuddyPress 1.6.2 is compatible with WordPress 3.5 not version 3.3.1
January 11, 2013 at 3:15 am #150255In reply to: installation wizard failing
BKVWordPress
ParticipantHello, I am having this exact same issue. Using 1.6.2 version of BuddyPress, as well as WordPress 3.3.1
Any ideas? My first install and I’m a bit lost.
I have tried to reload it multiple times, but as always the result is the same.
January 11, 2013 at 1:37 am #150243In reply to: [Resolved] wordpress database error
crepmaster
Participantthanx issue solved with the update to 1.4.5
January 11, 2013 at 1:10 am #150240@mercime
ParticipantYou could start off with https://wordpress.org/extend/plugins/buddypress-courseware/
Their support forum https://wordpress.org/support/plugin/buddypress-coursewareJanuary 11, 2013 at 1:05 am #150238@mercime
Participant1. yes
2. n/a
3. I will check this out and post a url for fix if necessary.
January 11, 2013 at 12:53 am #150235In reply to: Add media problem after upgrading to WP 3.5
@mercime
Participant@bibliata if you deactivated BP as mrjarbenne advised above and you still cannot add media, please post this issue at https://wordpress.org/support/
January 11, 2013 at 12:17 am #150226In reply to: [Resolved] wordpress database error
@mercime
Participantand it’s seems is in the themes1bp-corporate\functions.php.
Deactivate the theme. Either you’re using an outdated theme or you need to upgrade it to latest version. Either way, please contact the theme author.
January 10, 2013 at 7:35 pm #150174In reply to: Activation link in 1.7-bleeding
magichew
ParticipantSorry but I have just created another ticket for this too.
https://buddypress.trac.wordpress.org/ticket/4760
I have been running 1.7 on the site I’m testing for weeks and it seems like it hasn’t been a problem for the whole life of 1.7 as some users are fine and other users haven’t been able to activate at a later date.
Unfortunately I don’t know how to find out any sort of timeline for when this broke.
January 10, 2013 at 5:40 pm #150151In reply to: [Resolved] BuddyPress kills my 3.5 upgrade
lwaltzer
ParticipantOops. Trying again:
/**
* In WP 3.5+, get_blogs_of_user() is much slower than in previous versions. As
* a result, if you have a certain number of blogs, running get_blogs_of_user()
* will create a memory timeout. This is a particular problem because
* get_blogs_of_user() is called on every page, because of the toolbar.
*
* Ideally, there would be a way to short-circuit get_blogs_of_user(), or even
* to prevent WordPress from calling get_blogs_of_user() while loading the
* toolbar. But there is not. As a workaround, this function intercepts a key
* step in get_blogs_of_user() – the get_user_meta() call that gets all of a
* user’s metadata. If we determine that this request is coming from
* get_blogs_of_user() (which we do by examining the debug_backtrace(), a truly
* awful technique), AND that it’s one of the generic meta queries used by
* get_blogs_of_user(), AND that the current user has more than 75 blogs, THEN
* we strip all of the blog capability keys from the array of metadata,
* tricking get_blogs_of_user() into thinking that the current user has no
* blogs at all.
*/
function bbg_admin_bar_hack( $check, $object_id, $meta_key, $single ) {
// Only fire when looking at get_user_meta() with no params
if ( ! $meta_key ) {// check to see whether this came from get_blogs_of_user()
$db = debug_backtrace();
$is_get_blogs_of_user = false;
foreach ( $db as $dbk => $dbv ) {
if ( ‘get_blogs_of_user’ == $dbv[‘function’] ) {
$is_get_blogs_of_user = true;
break;
}
}if ( $is_get_blogs_of_user ) {
// Get the real metadata, but don’t recurse
remove_filter( ‘get_user_metadata’, ‘bbg_admin_bar_hack’, 10, 4 );
$meta = get_user_meta( $object_id );
add_filter( ‘get_user_metadata’, ‘bbg_admin_bar_hack’, 10, 4 );// How many blogs does this user have?
static $blog_count_of_user;
if ( ! isset( $blog_count_of_user ) && is_user_logged_in() ) {
$blog_count_of_user = 0;
foreach ( $meta as $mk => $mv ) {
if ( ‘capabilities’ === substr( $mk, -12 ) ) {
$blog_count_of_user++;
}
}
}// We only care about those with counts > 75
if ( $blog_count_of_user > 75 ) {
static $clean_keys;
if ( isset( $clean_keys ) ) {
return $clean_keys;
} else {
foreach ( $meta as $mk => $mv ) {
if ( ‘capabilities’ === substr( $mk, -12 ) ) {
unset( $meta[ $mk ] );
}
}$clean_keys = $meta;
return $meta;
}
}
}}
return $check;
}
add_filter( ‘get_user_metadata’, ‘bbg_admin_bar_hack’, 10, 4 );January 10, 2013 at 4:01 pm #150141In reply to: Add Home Icon to Nav Menu
January 9, 2013 at 6:12 pm #150109Ben Hansen
Participantthis might help:
BuddyPress Global/Sitewide Unified search update for BuddyPress 1.5+
also i hear good things about this plugin:
January 9, 2013 at 3:54 pm #150092In reply to: Using Register page when logged in
danbpfr
Participantok, so try this:
January 9, 2013 at 2:52 pm #150084In reply to: [Resolved] Copying functions.php to child theme
mrjarbenne
ParticipantUnlike CSS, which a child theme will override the parent theme files, a child theme will utilize both functions.php files.
See the WordPress Codex: https://codex.wordpress.org/Child_Themes#Using_functions.php
And the Buddypress Codex: https://codex.buddypress.org/legacy/building-a-buddypress-child-theme/So don’t copy it over. The functions are being applied in your child theme already. If there are additional functions you want to add in your child theme, add them to the child theme functions.php file.
January 9, 2013 at 11:08 am #150075In reply to: Installation on Multisite
Tim Hyde
ParticipantWe have just set up a multisite with BuddyPress and have each sub-site as the different languages. At present we just have French and English but the there will be more to come. (See it in action at http://artgrove.com/)
Enable WordPress in network directory mode. You will create a site for each language required. In the settings for each site you can choose a language.
For BuddyPress to work in this environment, you need to add the following line to wp-config:
define( ‘BP_ENABLE_MULTIBLOG’, true);
This makes the same single BuddyPress run across the whole wordpress network.
We also used Multilingual press (https://wordpress.org/extend/plugins/multilingual-press/) to help with the switching between languages and for syncing translated content.
The Codestyling Localization plugin is also very useful for translating plugins, themes and core components into target languages (https://wordpress.org/extend/plugins/codestyling-localization/).
Of course BuddyPress user generated content will always be in the language they input in. So as pointed out above, you may wish to set up groups/forums that are targeted to specifc languages.
January 9, 2013 at 4:01 am #150062In reply to: Filtering activity stream
mrjarbenne
ParticipantIf you want to block them entirely, you could use something like this:
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/
January 9, 2013 at 3:28 am #150060In reply to: Add media problem after upgrading to WP 3.5
mrjarbenne
ParticipantProbably WP related, but to check, deactivate BP and BBP and try again. If it’s still an issue, redirect your questions to the wordpress.org forum. BP and bbp don’t have native media upload functionality (beyond avatars), so you are probably posting in the wrong locale. Hope you find a solution.
January 9, 2013 at 3:19 am #150058In reply to: /members/ show member list
mrjarbenne
ParticipantThat would be the default behaviour of that particular URL, as you’ll see from the test BP site: http://testbp.org/members
If you aren’t seeing that, perhaps something isn’t set up correctly. In the Buddypress Admin page, have you associated all of the components with WordPress pages?
January 9, 2013 at 3:12 am #150057In reply to: private messages sent to email
mrjarbenne
ParticipantThat seems very odd. What are you using to re-route to gmail. Have you tried something like this: https://wordpress.org/extend/plugins/wp-mail-smtp/
January 9, 2013 at 2:42 am #150054In reply to: How to allow guest access to groups/forums
yidamweb
ParticipantHello Ben,
Documentation for the plugin may be read here: https://wordpress.org/extend/plugins/bp-registration-options/.
Thanks.
January 9, 2013 at 1:29 am #150049In reply to: Not exactly "a few easy clicks"
modemlooper
ModeratorIf you are serious about running your own hosted site then you will need to have a local install to do all your hacking/testing. If a plugin has not been updated to your install version DO NOT USE it unless you can code and fix problems. WordPress and BuddyPress works together OOTB but when you start adding in unknown code it can and will break.
Why do you think ning charges? They host it and make sure the features work. That’s the price. WordPress.com same thing. You pay a small fee to not have to deal with hosting and features breaking.
BuddyPress currently has no hosted solution so my comment about having a local test environment is they way to make sure new features/plugins wont kill your site.
Also, you need to protect user data and having bad plugins that could leak user data is a site killer. They will loose trust, delete and never return.
January 8, 2013 at 9:41 pm #150025In reply to: Need users to get discussion notifications
danbpfr
ParticipantHi,
try the plugin group email notification subscription
https://wordpress.org/extend/plugins/buddypress-group-email-subscription/January 8, 2013 at 9:09 pm #150020Ben Hansen
Participantyou have to make it yourself, don’t worry it’s pretty easy:
January 8, 2013 at 8:38 pm #150015In reply to: Registration Reload Error: Lets Get This Solved
Baconbits
Participant@modemlooper I ditched as many of the option tables as I could find, it didn’t solve the problem. I was wrong about it being a database problem it seems. Thank you — I found a solution for me; hopefully it hepls other users
@valuser – I figured out a very simple solution that completely saved my website this morning, try it out: on the sidebar where buddypress came with the built in login widget (top right of your sidebar), you’ll notice “Please create an account to get started”.. For me, this link takes you to yoursite.com/register-2/
-
register-2 being the slug for my registration page
.. If you try to sign up in here there are 0 issues across the board.
So I went into my wordpress – settings – reading and removed “registration” from my homepage and instead made a static homepage “start” which contains a brief about my website, a link (Sign Up Here) that takes you to yoursite.com/register-2. and the shortcode for login
(I found the login shortcode can be found here http://justintadlock.com/archives/2011/08/30/adding-a-login-form-to-a-page).
You don’t have to go about it the same route I did, but short and sweet do not use the registration page you created for buddypress as your home page.. add the SLUG to your website url.. yoursite.com/slug (probably register or registration). problem solved.
Let me know how that goes.
January 8, 2013 at 7:52 pm #150007In reply to: Upgraded and now nav and sidebar is responsive?????
aces
ParticipantYou could try putting the following in you child theme functions.php file
`function bbg_enqueue_styles() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( ‘wp_enqueue_scripts’, ‘bbg_enqueue_styles’, 5 );`For more info see: https://buddypress.trac.wordpress.org/ticket/3881#comment:2
January 8, 2013 at 7:48 pm #150005aces
ParticipantYou could try putting the following in you child theme functions.php file
`function bbg_enqueue_styles() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( ‘wp_enqueue_scripts’, ‘bbg_enqueue_styles’, 5 );`For more info see: https://buddypress.trac.wordpress.org/ticket/3881#comment:2
-
AuthorSearch Results