Forum Replies Created
-
In reply to: Error on show "all reply" page (in backend).
Hi @Robin W,
i disabled all plugins, actived only bbpress but page not works anyway.My site is online, now try with a local version.
bbp-repair should be a solution?
Thanks.
π
In reply to: My language files are overwritten by updateReally?
It’s a big problem! πIn reply to: My language files are overwritten by updateHi,
the problem is still present.
This morning when I upgraded my two plugin files .mo and .po bbPress and BuddyPress were overwritten …
How so?
Thank You.In reply to: Changing Forums & Topics labelsHi, thanks for your solution.
Roberto.
In reply to: My language files are overwritten by updateHi,
I try this code
add_filter( 'auto_update_translation', '__return_false' );
but this code not works, today my language files are overwritten.
Why?
Thanks.
In reply to: Admin toolbar: disable bbpress sectionResolved.
function admin_bar_remove_this(){ global $wp_admin_bar; $wp_admin_bar->remove_node('my-account-buddypress'); } add_action('wp_before_admin_bar_render','admin_bar_remove_this');
I hope this code is useful for someone.
In reply to: Admin toolbar: disable bbpress sectionItβs not a correct way, because if I enable this action, I donβt show the image in media section!
Why?
Thanks! π
In reply to: Admin toolbar: disable bbpress sectionResolved.
function remove_buddypress_admin_bar_init() { echo '<style type="text/css"> div#wp-toolbar > ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account > div.ab-sub-wrapper > ul#wp-admin-bar-my-account-buddypress { display: none !important; } </style>'; } add_action( 'init', 'remove_buddypress_admin_bar_init' );
Thanks! π
In reply to: Forum/Topic Description: concat custom messageResolved, I was working with wrong function.
My solution:
function add_bbp_display_forum_description_2() { $custom_msg = ''; if ( !is_user_logged_in() ) { $custom_msg = 'You must be logged in to see all topics.'; } echo $custom_msg; } add_action( 'bbp_template_before_single_forum', 'add_bbp_display_forum_description_2' );
Thanks!
In reply to: Shortcode and private topicsResolved.
I set the categories of forum as public and children of these categories as private.
Thanks.
In reply to: Remove "teletype" tags from shortcodeI’m sorry, I resolved.
I copied and pasted the shortcode from this link.
Well, I copied the teletype tag too!
Thanks!
In reply to: Query for thread with no new answers.In reply to: User "Editor" and "Groups & Activity".Correct, sorry for my error.
In reply to: need some helpThanks, it works very well! π