Search Results for 'buddypress'
-
AuthorSearch Results
-
May 23, 2012 at 1:09 pm #134971
In reply to: Error on registration page
Wendy Cockcroft
MemberThanks again, Hugo.
Okay, I copied and pasted the code you gave me into the functions.php file and got the header errors again with and without
`<?php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;
?>`Since this isn’t going to get resolved I’m going to junk BuddyPress and look for an alternative. It’s too difficult to work with. Sorry for wasting your time.
May 23, 2012 at 12:17 pm #134970In reply to: Better Introduction Needed
3DWorld
MemberThese are not helpful comments. I am not a developer. I have no knowledge. I am just learning as I go. But it appears that there is something wrong with my buddypress. I have only html when creating a post or page. There is no tab in the upper right corner to go back and forth between “visual” and “html”.
Your answer to my frustration was, “Yet you have spent, thus far, so little time understanding the application you are trying to use – don’t jump the gun and vent your frustrations until you have spent a little time learning how something works, then you will be better able to judge whether something really is a frustration, in need of better explanation” What kind of help is that? The point is that I am not finding the information I need. Wouldn’t it be better just to tell what I need to know, rather than scold me for not knowing? This is useless support. I have been working on this for weeks, yet you wrongly assume I haven’t given it any effort or time.
Your tech support skills need work.
May 23, 2012 at 11:56 am #134967In reply to: [Resolved] Display Settings options to admin only
orpatech
MemberJust add an the following IF Statement
if (current_user_can('level_10')){ }Add the above if condition around the following code in wp-content/plugins/buddypress/bp-settings/bp-settings-loader.php
$main_nav = array( 'name' => __( 'Settings', 'buddypress' ), 'slug' => $this->slug, 'position' => 100, 'show_for_displayed_user' => bp_core_can_edit_settings(), 'screen_function' => 'bp_core_screen_general_settings', 'default_subnav_slug' => 'general' );May 23, 2012 at 11:35 am #134965In reply to: Changing second level slugs
Paul Wong-Gibbs
KeymasterThis isn’t possible at the moment. There is too many hard coded URLs throughout BuddyPress.
May 23, 2012 at 10:13 am #134962becskr
ParticipantHi Boone,
Right thanks for the var dunp stuff, that’s got the first bit working and the correct info is stored in the variables.
I’m having some trouble now with the actual function itself. I changed the function name and changed the `item id` value to $groupid but nothing happens. I took the blog_record_activity from the core files and changed to groups_record_activity but am wondering whether it’s the component bit that’s the issue? I noticed in this post: https://wordpress.org/support/topic/plugin-buddypress-groupblog-adding-an-entry-to-group-activity-stream that the component is set to “groups” .Progress so far: http://pastebin.com/LTWSDM2i
May 23, 2012 at 8:31 am #134961In reply to: BuddyPress Forum
harsha52
MemberThanks for quick reply Nasir.
I did try both the option but nothing works for me. Unable to find where i am going wrong.Please help
Thanks.May 23, 2012 at 8:27 am #134960In reply to: Help with WP-Clear 3.0 compatibility
May 23, 2012 at 8:15 am #134959In reply to: BuddyPress Forum
Nasir Zia
MemberThere are two options for forums…
1) Forums for Groups
2) New! Site Wide ForumsYou might have chosen the first one!
thanksMay 23, 2012 at 6:58 am #134956In reply to: Error on registration page
Hugo Ashmore
ParticipantI did cover the image header question in the other thread – no I didn’t copy the code in to the thread as – in all honesty – stating “copy this ‘named’ function” ought to be sufficient to get started with.
I’ll now copy the function I referenced originally – you need to copy this into your child theme functions file, this function will alert BP not to run it’s original version and allows you to manipulate the rulesets that are created for custom headers.
`
function bp_dtheme_header_style() {
global $post;$header_image = ”;
if ( is_singular() && current_theme_supports( ‘post-thumbnails’ ) && has_post_thumbnail( $post->ID ) ) {
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘post-thumbnail’ );// $src, $width, $height
if ( !empty( $image ) && $image[1] >= HEADER_IMAGE_WIDTH )
$header_image = $image[0];} else {
$header_image = get_header_image();
}
?>#header { background-image: url(); }
#header h1, #header #desc { display: none; }
#header h1 a, #desc { color:#; }
<?php
}
`Now in the other thread I explained how to adjust the image dimensions by setting the define(‘HEADER_IMAGE_WIDTH’, 400) that will be displayed on the dashboard settings page and that represent the sizes the image will size and crop to, so you should still have that aspect in place.
If you leave the BP default layout unchanged then the header element width is likely wider than your background image ( the header width is stated in the stylesheet, the background image is set from the embedded styles in the code above) and that background image will repeat – but we went over that on the other thread, with the code above you can now add the required properties to prevent that.
Now code does need to be copied carefully and any stray code that may be causing issues might still affect things. Headers already sent errors have a number of reasons and are not necessarily easy for us to diagnose, I explained one possible cause but only you can determine if that is a reason.
On this issue of instruction; as I have said and now mercime this is a volunteer support forum, we are not obliged to provide absolute instruction we attempt to help and guide, also when one is a web dev professional there will be a level of expertise expected in general terms regarding coding experience. You are attempting to customise buddypress past what it offers in the default so you must expect certain aspects of doing that to be less than utterly idiot proof and there are aspects of BP that many of us struggle with.
May 23, 2012 at 6:40 am #134954In reply to: Need help with theme
@mercime
Participant@mac02 check if we have “template-packed” your WP theme from list near bottom of https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
May 23, 2012 at 3:23 am #134947Eric Langley
ParticipantThank you for your reponses. My site is strictly in testing mode right now. The primary funcationality that I am trying to get working, without success to this point, is completely separate activity streams, members and groups in a Multi Network configuration. To me it doesn’t seem like it should be that much of a hassle but it is.
Sure, I could just fire up multiple AWS servers to accomplish the same thing but then I have to manage all those separate code bases, which is a drag.
If you know of somone that can help me accomplish this with BuddyPress I’d like to work with them.
May 23, 2012 at 3:21 am #134946In reply to: Allow users to join only one group?
mrjarbenne
ParticipantDepending on the size of your userbase, you could make all the groups Hidden, then use the Invite Anyone plugin to manually invite (or have established group admins manually invite) the users who belong in each separate group. Don’t get thrown by the first bullet in the description of the plugin, in this instance the power of this plugin will be in your ability to invite people to a group even if you aren’t friends with them (bullet 2 in the description on the link below). Perfect if you are using the Followers plugin as well and have Friend Connections turned off:
https://wordpress.org/extend/plugins/invite-anyone/
https://wordpress.org/extend/plugins/buddypress-followers/May 23, 2012 at 3:16 am #134945mrjarbenne
ParticipantYou need this plugin: http://etivite.com/wordpress-plugins/buddypress-restrict-group-creation/
May 23, 2012 at 2:50 am #134942In reply to: Need help with theme
mrjarbenne
ParticipantUnder Buddypress / Pages, have you created all of the requisite pages for Activity, Groups, Members, etc.? I don’t understand “Everything was spread all throughout the page”. You’ll need that template pack enabled, and it needs to move some components into your active theme. Did you run through the 4 step process?
It’s a beautiful theme you’ve got going there, but I have honestly never had much luck converting a non-bp theme to be truly bp compatible without a lot of massaging. It’s not a plug and play process, hence the default theme. You may want to consider creating a child theme of the default: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
May 23, 2012 at 2:42 am #134941mrjarbenne
ParticipantThe bb-config.php file is the only file necessary to create forums “the old way” using bb-press 1.x instead of the completely reconfigured 2.0. You’ll notice in the Buddypress / Forums menu there are two options: Forums for groups (that single bb-config file uploaded to the root of your site), and Site Wide Forums, which is the separate bb-press 2.x plugin you have enabled. Not sure if that’s your issue or not. All of that said, full compatibility between buddypress and bbpress isn’t expected until version 1.6.
You can download the bb-config-sample.php file from https://bbpress.org/download/legacy/ and then populate the necessary database information to enable the Group Forum capability, but with 1.6 so close (I think) you might be better off holding out.
May 23, 2012 at 2:26 am #134940@mercime
Participant@elangley sorry, I understated what was expected. For example, WordPress.com is a custom Multisite installation with around 35Million+ user blogs spread over several DB’s and supported by multiple paid topnotch frontend and backend developers, server admins, etc. Even if you would only have e.g. 100 Networks with WP Multi-Network and you’ve allowed user blogs in each Network and then go BP MultiNetwork, that would require a serious developer skills where making some changes in DB is just child’s play since by that time you’d have to use SharDB, HyperDB, or MultiDB to maintain, sustain and grow the Networks over several servers and DB’s.
May 23, 2012 at 2:21 am #134937mrjarbenne
ParticipantIn the Buddypress Settings menu, do you have the “Disable BuddyPress to WordPress profile syncing?” set to “No”?
May 23, 2012 at 2:17 am #134936In reply to: Preventing members from leaving a group?
mrjarbenne
ParticipantSomething like this might provide the lock you are looking for: https://buddypress.org/community/groups/buddypress-mandatory-groups/
May 23, 2012 at 2:11 am #134934In reply to: Need help with theme
mrjarbenne
ParticipantDid you install the Buddypress Template Pack Plugin? If you are using a theme that doesn’t have buddypress functionality baked in by default, you need to install this plugin and run through the steps to enable compatibility. https://wordpress.org/extend/plugins/bp-template-pack/
May 23, 2012 at 1:24 am #134933In reply to: Template help
@mercime
Participant@frostdawn Could just be that the surrounding divs for either or both content area and widget-area-1 are already styled to specific widths in stylesheet. You’d then have to add new style at the bottom of your stylesheet to override default widths.
Open up the revised template with the widget-area-1 at 100% width which you’ve posted above, copy all code, post in pastebin.com, click submit and post the generated URI here so we can have better reference.
May 23, 2012 at 1:02 am #134932@mercime
Participant== When searching these files, i cant find the exact code you wrote. for instance in activity, i found … ==
I don’t know what file you’re opening. For activity/index.php –> lines 12-17 in https://buddypress.trac.wordpress.org/browser/tags/1.5.5/bp-themes/bp-default/activity/index.php
May 23, 2012 at 12:59 am #134931In reply to: Error on registration page
Wendy Cockcroft
MemberMercime, I’ve got the willingness to learn new skills but I need to receive clear instructions. To date, I’ve had instructions that have not worked when I put them into practice. It doesn’t help when I’m receiving them in terms that I don’t understand. If you want to lock out noobs, please say so and I’ll go elsewhere.
I’m not asking for much. Again, all I want is to be able to insert a logo of my choice at the dimensions I specify without it repeating. I’d also like to make my child theme work as expected without either locking me out or preventing new registrations.
To date, the instructions I’ve received here on the forum have not facilitated that. When I thought the problem was resolved I marked the thread resolved. A day or so later, I got header errors and couldn’t get into the site until you (correctly) told me that my child theme was the problem and I’d have to rename it. Which I’ve done. And I’m grateful to be able to get back in. Thank you.
Now I need to know if it’s possible at all to make a BuddyPress child theme that works properly with a header image of my choice or am I stuck with the massive dimensions specified by the default theme?
If so, please tell me, in terms I understand, how to do it.
May 23, 2012 at 12:59 am #134930In reply to: Help with WP-Clear 3.0 compatibility
@mercime
ParticipantB. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php):
``
with the following for registration/register.php:
`jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});`
Save files.
C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/wp-clear/
D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.
May 23, 2012 at 12:59 am #134929In reply to: Help with WP-Clear 3.0 compatibility
@mercime
Participant@turfnet Based on the HTML structure of your theme, you need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your wp-clear theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive.
A. At the top of each of those 16 template files I linked to above, replace
``with code I posted at
http://pastebin.com/tpEyMDJqThen, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `
…
` or `
..
` to `
// Titles Of Respective BP Page Templates //
`, just watch out when you do this in the /activity/index.php page.
Save files.
May 23, 2012 at 12:57 am #134928In reply to: Problems w/BP Install on single domain
w84me
Member@Kyneee I have an option to register, and users get an email with login and password, but it doesn’t redirect to their profile and no page is created for them. So they login from the hompage and it just refreshes the home page and that’s it. I’ve registered 3 users and it shows them logged in but all they are is registered, nothing else.
-
AuthorSearch Results