Forum Replies Created
-
In reply to: Change Forum Title from Archives: Forums
it is theme related – all I can suggest is adding this in the custom css area of your theme
.`forum-archive .site-content-header {
display : none !important;
}`ok, would you be happy for me to take a look at your site? if so, can you contact me via
hmm – do you have sub forums?
how many forums, topics and replies roughly does you forum have ?
presume you have tried
dashboard>tools>forums>repair forums?
and does this work, even if for a shorttime ?
In reply to: Change Forum Title from Archives: Forumsok in menus, do not have a link, but have the page, that should help
In reply to: Cannot read text in my forumyou set up a page called say register_page and put this code into the content
[bbp-register]
In reply to: How to display latest topic in horizontal format🙂
In reply to: Show Custom Warning Message🙂
In reply to: Favourites button not showing.so is this a new problem, has it always been the case, or a new site?
In reply to: Show Custom Warning Messageadd_action ('bbp_theme_before_topic_form_notices' ,'rew_show_notice' ) ; function rew_show_notice () { if (!is_user_logged_in()) { echo '<div class="rew-notice">Only registered users are allowed to upload attachments'</div>' ; } }In reply to: Search form stylingplay with the width settings in the above code
width: calc(100% - 85px);and
width: 84px;In reply to: How can i display bbpress tag listdashboard>appearance>widgets>tag cloud and select topic tags
In reply to: Show Custom Warning Messageadd_action ('bbp_theme_before_topic_form_notices' ,'rew_show_notice' ) ; function rew_show_notice () { echo '<div class="rew-notice">Only registered users are allowed to upload attachments'</div>' ; }In reply to: Show Custom Warning Messagecan you post a link to an example and say EXACTLY where you want this
In reply to: Search form styling#bbp-search-form input[type="text"] { font-size: 15px; background: #fff; border: 1px solid #bacad6; margin-right: -4px; border-right: 0; border-top-left-radius: 5px; border-bottom-left-radius: 5px; border-top-right-radius: 0px; border-bottom-right-radius: 0px; width: calc(100% - 85px); }#bbp-search-form input[type="submit"] { font-size: 15px; border-top-right-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 0px; border-bottom-left-radius: 0px; width: 84px; }In reply to: Moving a reply to a new topicgreat – not sure why it didn’t work in code snippets (in essence it’s the same code as you’ve just enabled in style pack), but that will help me – glad you are fixed !!
In reply to: Moving a reply to a new topicyou guessed right, we might need to do that.
This was found to happen with Theme my login plugin, which registered a public query which both use. My bug fix should have corrected that, even if another plugin is doing it.
But yes, we need to find which plugin is doing that.
however just before we do, can you take out the code above from code snippets
then in
dashboard>settings>bbp style pack>bug fixes, can you tick “Fix ‘A variable Mismatch has been detected’ ” save and try again.
then come back
In reply to: Moving a reply to a new topicwhat other plugins are you using ?
In reply to: Moving a reply to a new topicPut this in your child theme’s function file – or use
function rew_get_topic_split_link( $retval, $r, $args ) { // Parse arguments against default values $r = bbp_parse_args( $args, array( 'id' => 0, 'link_before' => '', 'link_after' => '', 'split_text' => esc_html__( 'Split', 'bbpress' ), 'split_title' => esc_attr__( 'Split the topic from this reply', 'bbpress' ) ), 'get_topic_split_link' ); // Get IDs $reply_id = bbp_get_reply_id( $r['id'] ); $topic_id = bbp_get_reply_topic_id( $reply_id ); // Bail if no reply/topic ID, or user cannot moderate if ( empty( $reply_id ) || empty( $topic_id ) || ! current_user_can( 'moderate', $topic_id ) ) { return; } $uri = add_query_arg( array( 'action' => 'bbp-split-topic', 'reply_id' => $reply_id ), bbp_get_topic_edit_url( $topic_id ) ); $retval = $r['link_before'] . '<a href="' . esc_url( $uri ) . '" title="' . $r['split_title'] . '" class="bbp-topic-split-link">' . $r['split_text'] . '</a>' . $r['link_after']; // Filter & return return apply_filters( 'rew_get_topic_split_link', $retval, $r, $args ); } add_filter ('bbp_get_topic_split_link', 'rew_get_topic_split_link' , 10 , 3) ; function rew_is_topic_split() { // Assume false $retval = false; // Check topic edit and GET params if ( bbp_is_topic_edit() && ! empty( $_GET['action'] ) && ( 'bbp-split-topic' === $_GET['action'] ) ) { $retval = true; } // Filter & return return (bool) apply_filters( 'rew_is_topic_split', $retval ); } add_filter ('bbp_is_topic_split' , 'rew_is_topic_split' ) ;and come back and confirm that it works
In reply to: forum title in topics page🙂
In reply to: Forum Moderators Not Workif you enable that, then in each forum, you can set specific moderator(s)
they are set in a box on then right hand side of the forums when you view them in the dashboard
A moderator can change other peoples posts, delete posts, mark then as spam etc.
In reply to: Change Forum Title from Archives: Forumsdo you have a wordpress page called forums?
In reply to: Cannot read text in my forumI’d suggest you download this plugin – it should let you change the settings for forums
In reply to: Cannot read text in my forumyou theme is affecting this, specifically
body, .entry-title a, :root .has-primary-color { color: #ffffff; }which turns text white