Forum Replies Created
-
Nobody? oO
bump
Wow! Thank you @nuprn1!
In my installation, the Adminbar isn´t displayed on the login page. This is a function of WordPress … You could hide it for example with CSS.
sicksight said 1 week, 6 days ago:
Any ideas? oO
@firetag perfect! just started thinking how to implement group categories! let me know if you need help!
my problem is solved! thanks!
You could use this snippet in your functions.php to redirect the user to the homepage: http://pastebin.com/VPfgZZTu
You could cutomize the code to your wishes!@nuprn1 Yes, your right with the filter bp_get_activity_content_body!
But I am very interested in why this code does not work:
http://pastebin.com/NGtZRuqD -.-Perhaps someone can tell me my errors(?).
@nuprn1 Thank´s, but something is wrong with my add_filter code, and I need your help to fix this…
Maybe this could help you: https://codex.buddypress.org/how-to-guides/modifying-the-buddypress-admin-bar/
you need to register a ‘slug’ for your new profile component…
maybe the codex could help you… and check this: https://codex.buddypress.org/how-to-guides/creating-a-custom-buddypress-component/
something like this:
bp_core_new_nav_item(
array(
'name' => __('Test', 'buddypress'),
'slug' => 'test',
'position' => 1,
'show_for_displayed_user' => true,
'screen_function' => 'test_screen_inbox',
'default_subnav_slug' => 'test',
'item_css_id' => $bp->test->id
));
Your Code worked, but disables all navigations (adminbar….).
I will remove the calls in my child theme, because it is the easyest way!Thanks for information guys!
Any ideas? oO
BuddyPress shows blog comments in default! Please check your settings in backend!
Yes, I could do this, but then I must update my code after every plugin update (gallery, … )… When there is no remove_action possible, I must remove the line in the theme files…
@mvvspr Sorry, I don´t know about this would save bandwidth, but maybe! I thought just about usability.
I hope this could solved! hrhrI think wpmu is not longer supported… You could do multible blogs with WP3.0, but I don´t know, if you could change this, when you decide to a single blog between installation! With current BP Version WP versions before 3.0 are not longer supported.
In the meantime, I use the following code to display the pagination at the bottom:
http://pastebin.com/UDgTzdMe
Put it in your functions.php in your current Theme!Maybe someone can even use this snippet!
Any Ajax solutions regarding the button would be very nice of course!!!!
________
EDIT: And here is the code for forums-, blogs-loop http://pastebin.com/h9d4w4qT .
Button there, would be nice too!No, sorry, not at the moment! I´ve thought about making my community in several languages available, but for the next time it is to complicated… I think it could end in a similar situation, as in ancient Babylon!
First: I have not updated to WordPress 3.0 …
I used “root” instead of “admin” and I immediately replaced after the installation all text with “admin” in the database with “root”.@nickmy Grüße aus Essen!
Maybe you could try these Plugins (not testet):
https://wordpress.org/extend/plugins/buddypress-multilingual/
https://buddypress.org/community/groups/bp-translate/SickSight
Thanks @crashutah ! I would do this!
Hey @modemlooper !
Thanks for your reply, but it doesn´t work… To remove the action bp_get_displayed_user_nav(), I need the hook to which the function to be removed is hooked.
https://codex.wordpress.org/Function_Reference/remove_actionI think bp_get_displayed_user_nav()… isn´t hooked anywhere!
Edit: Need a function like
replace_action( $function_to_replace, $function_to_add, $priority, $accepted_args )
! Like str_replace in php, or something!^^Maybe someone has an idea?