Search Results for '+.+default+.+'
-
Search Results
-
[New topic] opens TinyMCE on the Text tab. My users think HTML is a government department 🙂 so can I default it to open on the View tab instead?
Topic: Repair tool with cron
Hi, I have a project which updates the forum daily through an import program.
What I need is to run the repair tool that has bbpress once a day, when all imports are finished.
I found this code but I can not make it work.
function bbp_register_default_repair_tools() { // Topic meta bbp_register_repair_tool( array( 'id' => 'bbp-sync-topic-meta', 'description' => __( 'Recalculate parent topic for each reply', 'bbpress' ), 'callback' => 'bbp_admin_repair_topic_meta', 'priority' => 5, 'overhead' => esc_html__( 'Low', 'bbpress' ), 'components' => array( bbp_get_reply_post_type() ) ) ); // Forum meta bbp_register_repair_tool( array( 'id' => 'bbp-sync-forum-meta', 'description' => __( 'Recalculate parent forum for each topic and reply', 'bbpress' ), 'callback' => 'bbp_admin_repair_forum_meta', 'priority' => 10, 'overhead' => esc_html__( 'Low', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) ) ); // Forum visibility bbp_register_repair_tool( array( 'id' => 'bbp-sync-forum-visibility', 'description' => __( 'Recalculate private and hidden forums', 'bbpress' ), 'callback' => 'bbp_admin_repair_forum_visibility', 'priority' => 15, 'overhead' => esc_html__( 'Low', 'bbpress' ), 'components' => array( bbp_get_forum_post_type() ) ) ); // Sync all topics in all forums bbp_register_repair_tool( array( 'id' => 'bbp-sync-all-topics-forums', 'description' => __( 'Recalculate last activity in each topic and forum', 'bbpress' ), 'callback' => 'bbp_admin_repair_freshness', 'priority' => 20, 'overhead' => esc_html__( 'High', 'bbpress' ), 'components' => array( bbp_get_forum_post_type(), bbp_get_topic_post_type(), bbp_get_reply_post_type() ) ) ); // Sync all sticky topics in all forums bbp_register_repair_tool( array( 'id' => 'bbp-sync-all-topics-sticky', 'description' => __( 'Recalculate sticky relationship of each topic', 'bbpress' ), 'callback' => 'bbp_admin_repair_sticky', 'priority' => 25, 'overhead' => esc_html__( 'Low', 'bbpress' ), 'components' => array( bbp_get_topic_post_type() ) ) ); // Sync all hierarchical reply positions bbp_register_repair_tool( array( 'id' => 'bbp-sync-all-reply-positions', 'description' => __( 'Recalculate the position of each reply', 'bbpress' ), 'callback' => 'bbp_admin_repair_reply_menu_order', 'priority' => 30, 'overhead' => esc_html__( 'High', 'bbpress' ), 'components' => array( bbp_get_reply_post_type() ) ) ); // Sync all BuddyPress group forum relationships bbp_register_repair_tool( array( 'id' => 'bbp-group-forums', 'description' => __( 'Repair BuddyPress Group Forum relationships', 'bbpress' ), 'callback' => 'bbp_admin_repair_group_forum_relationship', 'priority' => 35, 'overhead' => esc_html__( 'Low', 'bbpress' ), 'components' => array( bbp_get_forum_post_type() ) ) ); // Update closed topic counts bbp_register_repair_tool( array( 'id' => 'bbp-sync-closed-topics', 'description' => __( 'Repair closed topics', 'bbpress' ), 'callback' => 'bbp_admin_repair_closed_topics', 'priority' => 40, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_topic_post_type() ) ) ); // Count topics bbp_register_repair_tool( array( 'id' => 'bbp-forum-topics', 'description' => __( 'Count topics in each forum', 'bbpress' ), 'callback' => 'bbp_admin_repair_forum_topic_count', 'priority' => 45, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_forum_post_type(), bbp_get_topic_post_type() ) ) ); // Count forum replies bbp_register_repair_tool( array( 'id' => 'bbp-forum-replies', 'description' => __( 'Count replies in each forum', 'bbpress' ), 'callback' => 'bbp_admin_repair_forum_reply_count', 'priority' => 50, 'overhead' => esc_html__( 'High', 'bbpress' ), 'components' => array( bbp_get_forum_post_type(), bbp_get_reply_post_type() ) ) ); // Count topic replies bbp_register_repair_tool( array( 'id' => 'bbp-topic-replies', 'description' => __( 'Count replies in each topic', 'bbpress' ), 'callback' => 'bbp_admin_repair_topic_reply_count', 'priority' => 55, 'overhead' => esc_html__( 'High', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) ) ); // Count topic voices bbp_register_repair_tool( array( 'id' => 'bbp-topic-voices', 'description' => __( 'Count voices in each topic', 'bbpress' ), 'callback' => 'bbp_admin_repair_topic_voice_count', 'priority' => 60, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() ) ) ); // Count non-published replies to each topic bbp_register_repair_tool( array( 'id' => 'bbp-topic-hidden-replies', 'description' => __( 'Count pending, spammed, & trashed replies in each topic', 'bbpress' ), 'callback' => 'bbp_admin_repair_topic_hidden_reply_count', 'priority' => 65, 'overhead' => esc_html__( 'High', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) ) ); // Recount topics for each user bbp_register_repair_tool( array( 'id' => 'bbp-user-topics', 'description' => __( 'Recount topics for each user', 'bbpress' ), 'callback' => 'bbp_admin_repair_user_topic_count', 'priority' => 70, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() ) ) ); // Recount topics for each user bbp_register_repair_tool( array( 'id' => 'bbp-user-replies', 'description' => __( 'Recount replies for each user', 'bbpress' ), 'callback' => 'bbp_admin_repair_user_reply_count', 'priority' => 75, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_reply_post_type(), bbp_get_user_rewrite_id() ) ) ); // Remove unpublished topics from user favorites bbp_register_repair_tool( array( 'id' => 'bbp-user-favorites', 'description' => __( 'Remove unpublished topics from user favorites', 'bbpress' ), 'callback' => 'bbp_admin_repair_user_favorites', 'priority' => 80, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() ) ) ); // Remove unpublished topics from user subscriptions bbp_register_repair_tool( array( 'id' => 'bbp-user-topic-subscriptions', 'description' => __( 'Remove unpublished topics from user subscriptions', 'bbpress' ), 'callback' => 'bbp_admin_repair_user_topic_subscriptions', 'priority' => 85, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_topic_post_type(), bbp_get_user_rewrite_id() ) ) ); // Remove unpublished forums from user subscriptions bbp_register_repair_tool( array( 'id' => 'bbp-user-forum-subscriptions', 'description' => __( 'Remove unpublished forums from user subscriptions', 'bbpress' ), 'callback' => 'bbp_admin_repair_user_forum_subscriptions', 'priority' => 90, 'overhead' => esc_html__( 'Medium', 'bbpress' ), 'components' => array( bbp_get_forum_post_type(), bbp_get_user_rewrite_id() ) ) ); // Remove unpublished forums from user subscriptions bbp_register_repair_tool( array( 'id' => 'bbp-user-role-map', 'description' => __( 'Remap existing users to default forum roles', 'bbpress' ), 'callback' => 'bbp_admin_repair_user_roles', 'priority' => 95, 'overhead' => esc_html__( 'Low', 'bbpress' ), 'components' => array( bbp_get_user_rewrite_id() ) ) ); }
Hello
My participants cannot view or reply to private topics. Administrators/keymasters seem to be able to.
I’ve installed bbPress version 2.5.14, and Members Version 2.0.2 plugins. When I look at the participant’s role it:
can read_private_forums
cannot read_private_topics
cannot read_private_repliesand I cannot edit this role: “The Participant role is not editable. This means that it is most likely added via another plugin for a special use or that you do not have permission to edit it.”
I tried deactivating plugins one by one to see if I could edit this role. I thought by default Participants could read and reply to private topics…
Thanks for any help
Topic: Topic template settings
I am having trouble getting the topic page template to default to the same page format as my forum page. I created a custom template “bbp-sidebars” that presents my forum page with a sidebar for forum page views and topic views. The forum picks up the custom template, but the topics page ignores it and defaults to the blog view template. So far I downloaded bbp Style Pack, bbp shortcodes, bbP Tookkit, Weaver for bbPress, and What the File to see if there was a setting to accomplish my goal. I also read multiple articles on custom templates, but none address the topic layout. Also, after a new topic or topic response is posted, I can manually go in and set the page settings to have it display the way I want. While my site is growing I can probably do this, but after a certain point it will be too hard to keep up.
I am using WP 4.9.4, ForeFront theme Version 1.04 as a subtheme under GeneratePress V 2.02
My Website is https://defensecareersHQ.com PW is “VetsHelpingVets”
An example of my issue can be viewed here
https://www.defensecareershq.com/forums/topic/how-about-l-3-technologies/Also, please note I manually set the all other topic pages to display correctly. Any advice is greatly appreciated.
When I create in /wp-content/themes/my-theme/bbpress/loop-topics.php then I can overwrite the default BBPress template this way.
But creating /wp-content/themes/my-theme/bbpress/loop-topics-[FORUM_ID_HERE].php doesn’t use this template for that category ID which seems to be against https://developer.wordpress.org/themes/basics/template-hierarchy/ and https://codex.bbpress.org/themes/theme-compatibility/template-hierarchy-in-detail/
Is there a way to create a separate page template per forum ID without using conditional tags in loop-topics.php?