Search Results for 'buddypress'
-
AuthorSearch Results
-
March 4, 2010 at 11:31 pm #66773
thekmen
Participant@Anointed, the default theme functions.php is calling the required ajax & js.
I want to add a function to a standard WP theme functions.php to only call those files when viewing BP pages.
March 4, 2010 at 11:13 pm #66769Anointed
Participantgoing to sound like a stupid question, but here goes.
Where is the code in buddypress that is injecting the needed js/ajax etc?
It’s definitely not in the bp-default header file.
I managed to create a new child theme with no issues, even using my own header.php file, so it would be nice to know what code to modify once this is resolved so that I only load bp stuff where needed.
March 4, 2010 at 11:07 pm #66768thekmen
Participantyeah, guess so.
Thanks @r-a-y for all your help with this.
Just opened a Trac ticket, https://trac.buddypress.org/ticket/2131
Hope this helps theme frameworks & conversions.
March 4, 2010 at 10:52 pm #66766In reply to: Blogs not showing up for users
David Lewis
ParticipantDeactivate BuddyPress and then reactivate. For good measure… add a description to the blog in question. Previous to the fix… the blogs that would go missing from lists and menus were ones that did not have a description. Shouldn’t matter now that the bug is fixed… but you could try it anyway.
March 4, 2010 at 10:36 pm #66761Paul Wong-Gibbs
KeymasterThere is, but it only kicks in on a MU install. Look at bp_core_add_illegal_names() in bp-core.php. There may be a reason why it is not done on a regular WordPress install — perhaps such a feature doesn’t exist in regular WordPress.
March 4, 2010 at 10:32 pm #66760In reply to: domain mapping not working properly
Anointed
ParticipantIs there a place in buddypress where I can change the overall links within buddypress pages to point to the mapped domain name instead of the actual subdomain url?
If my clients account is mapped to ‘xyz.com’ and my bp install is at ‘abc.com’ all links on the buddypress pages send my user to client.abc.com instead of their actual domain.
kinda makes it impossible to roll buddypress out to my clients if the links on their sites are redirecting to a url that they don’t understand…..
March 4, 2010 at 10:10 pm #66756In reply to: Make your own custom BuddyPress page
shaisimchi
Participanthey,
I was able to get this to work but one question:
when i go to my new page $bp is empty.
any ideas why? this is quite urgent for me.
Thanks for the help.
Shai
March 4, 2010 at 9:57 pm #66755In reply to: Looking for a Following-Feature
stevan
ParticipantAndy is your answer mean that this suggestion is ditched
https://buddypress.org/forums/topic/friends-and-groups-for-buddypress-13
March 4, 2010 at 9:19 pm #66752In reply to: Bug: BuddyPress to WordPress profile syncing broken
ajohnson
Memberdouble *bumb* . this is a real issue for me
March 4, 2010 at 9:01 pm #66750Anointed
ParticipantWe really need a buddypress config file that has a list of ‘non-allowed’ group and blog names as this would really help to solve this issue at the core level. Maybe even an admin section where the site admin can add additional ‘non-allowed’ names so that buddypress plugins that create other names don’t conflict as well?
March 4, 2010 at 8:49 pm #66748In reply to: BuddyPress Group Tags is now available
Dwenaus
Participanthere is the request in trac. https://trac.buddypress.org/ticket/2127
I even learned how to make diffs!
March 4, 2010 at 8:48 pm #66747Anointed
ParticipantThanks Ray… the solution worked for now. I will continue to try and track down the ‘offending’ code that is inserting that part so we don’t have to use the important override.
btw
Using the woothemes Canvas framework is a fantastic addition to buddypress. It gives the admin capabilities to change all fonts, backgrounds, colors, layouts, etc… the list is endless really as it depends upon which functions you add in to the admin panel.
I’m really hoping that someday a buddypress framework is going to be released, as most people have no idea the power behind adding in a control panel into the admin. It will make my life much easier as my clients will now be self sufficient in changing their sites appearance, and won’t have to call me every time they want to modify something in the theme.
March 4, 2010 at 8:34 pm #66745r-a-y
KeymasterI guess we need more testers!
March 4, 2010 at 8:09 pm #66741In reply to: BuddyPress Group Tags is now available
pcwriter
ParticipantGood catch, that worked! File edited.
March 4, 2010 at 7:56 pm #66739thekmen
ParticipantThanks @r-a-y,
I tried switching back to the default BuddyPress 1.2.1 theme & get the exact same results.
March 4, 2010 at 7:52 pm #66738rsutaria
Memberhi r-a-y,
you were spot on with your analysis. I had spent 4 hours today trying to figure out what could be wrong here. It would be nice if the documentation mentioned that if you are setting up buddypress to make sure NOT TO call the wordpress folder “groups”.
Hopefully anyone else who might venture naming their setup “groups” will avoid wasting a ton of time by reading this little FAQ.
Thanks!
Ronak
March 4, 2010 at 7:36 pm #66736r-a-y
KeymasterYou might have to add a WP conditional like is_archive().
It’s a little bit weird why you’re getting the page slug in the current_component.
Could be because of the Hybrid theme you’re using. I’m not completely sure.
March 4, 2010 at 7:30 pm #66734thekmen
ParticipantOK, that would work for posts as $bp->current_component returns the first bit – i.e. %year% so I could use !is_numeric.
However, it doesn’t work for pages or category archives.
March 4, 2010 at 7:18 pm #66733In reply to: new plugin: BuddyPress Rate Forum Posts
Dwenaus
ParticipantAndrew, the issue you raise–not doing the highlighting with javascript–is valid, and I will be addressing it in the next version, however i’m going to take another approach than you’ve suggested. So other users don’t need to be concerned with the above code, because it will work differently quite soon.
March 4, 2010 at 7:11 pm #66732r-a-y
KeymasterWhat happens when you use the default /%year/%month%/%postname% permalink?
March 4, 2010 at 7:08 pm #66731r-a-y
KeymasterIt’s probably because you have “groups” as your wordpress directory.
In wp-config.php, add this snippet:
define ( 'BP_GROUPS_SLUG', 'gatherings' );Change ‘gatherings’ to something you like.
This will make your new groups URL look like:
hxxp://urbansensors.net/projects/karmayog/groups/gatherings
March 4, 2010 at 7:04 pm #66730thekmen
ParticipantThe only way I can get $bp->current_component to return nothing for normal WP posts and pages is by using the default permalink structure (?p=123), as soon as I use /%postname%/ for permalinks, $bp->current_component returns the post/page name
March 4, 2010 at 6:52 pm #66729r-a-y
KeymasterYou don’t have to.
Didn’t we want $bp->current_component to return blank for WP pages and posts?
That way you can just target BP pages like profiles, member directories, etc. because $bp->current_component returns something for them.
March 4, 2010 at 6:46 pm #66728In reply to: BuddyPress-Links 0.3 FINAL is here at last
Anton
Participant@pimpmywordpress – It’s running smooth on wp single and bp 1.2.1
March 4, 2010 at 6:40 pm #66726In reply to: BuddyPress Group Tags is now available
Dwenaus
ParticipantYes, I see the problem now. I’ll address it right away…
It seems like that is a bug in buddypress. /bp-themes/bp-default/blogs/create.php the do_action at the top should not be bp_before_directory_groups_content it should rather be bp_before_directory_blog_content like it is in the other blog pages such as index.php.
I’ve made a trac request to change this.
nice to know its not my plugin.
I would just edit that file, as it will probably be fixed in the next minor upgrade.
-
AuthorSearch Results