Forum Replies Created
-
In reply to: Login Form on Topics, Forum page
link to an example on your site please
In reply to: Error: A variable mismatch has been detected.Took a while to work out where the chnages were needed π
I’ve raised a ticket – and I’ll add it to style pack bugs shortly – thanks for testing that it worked for you also !!
In reply to: Error: A variable mismatch has been detected.can you try this in your child theme function file or snippets
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' ) ;In reply to: Error: A variable mismatch has been detected.that’s a great response, let me look at it later
In reply to: [bbp-forum-index] looks differentunfortunately the demo page you gave a link to requires login access to that premium theme.
I’d suggest you raise the issue with your premium theme provider
In reply to: Error: A variable mismatch has been detected.bug found and fixed in 4.4.5
In reply to: Error: A variable mismatch has been detected.ok, so you’ll contact them next I guess π
In reply to: Number of topic/reply under avatarIn reply to: Error: A variable mismatch has been detected.when you last reported it, I said
‘ok, I can only suggest that you revert to the standard tests
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesnβt work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back@you did not respond to that, so can’t really help further if you don’t do the tests π
ok, I’d do this
go back to
When I do a static page and add the bbCode shortcode [bbp-forum-index] it works fine and as expected.
and use developer told to scrape the code from the presented page.
then you should be able to construct the page without using shortcodes
too much work for me to really help further for free – sorry
can you post your revised template please
In reply to: Installing bbpress in main domain vs. sub-domain?sorry, a bit like asking what is better for a journey train or car ? Depends on lots of factors.
If you don’t have a massive site or massive forums, then answer is they are probably equal.
as a quick guess, I suspect you are trying multiple shortcodes
so
<?php echo do_shortcode('[tdc_zone type="tdc_content"][vc_row full_width="stretch_row_1400 td-stretch-content"][vc_column][vc_row_inner][vc_column_inner width="1/3"][td_block_list_menu menu_id="14949"][/vc_column_inner][vc_column_inner width="2/3"][vc_column_text]might need to be
<?php echo do_shortcode('[tdc_zone type="tdc_content"]') ; <?php echo do_shortcode('[vc_row full_width="stretch_row_1400 td-stretch-content"]') ; etc.In reply to: Incorrect date issuedashboatd>tools>forums>repair forums and run as appropriate
In reply to: BB press not showing topicsjust created a topic – can you repeat what your issue is
In reply to: Threaded replies not workingI’ve just released version 4.4.3 of my style pack plugin, which has a new tab called ‘bug fixes’ where I have added @mjonesnerdery ‘s very useful correction
once activated go to
dashboard>settings>bbp style pack>bug fixes and activate it.
In reply to: Must-haves for bbpress?there’s a list of useful bbpress plugins in there
once activated go to
dashboard>settings>bbp style pack>other bbpress plugins
In reply to: Participant approve topicsdashboard>settings>discussion>comment moderation and change the number of links
In reply to: Participant approve topicsok, you need to look at the content for one that is automatically approved and one that goes into moderation and see what the difference is.
you could start with whether there are links in it
In reply to: Participant approve topicsSorry, need clarification
Are you saying that all topics and replies are currently being held, and need approval or that this is what you would like to happen?
In reply to: add front end editor@thetoolman123 – no – I split this question off from yours, as this is a different question
In reply to: add front end editor[moderator – split as not quite the same question]
If I understand you then…
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Form
In reply to: Display “Forum” or “topic” in header?that does make sense, but I’m afraid its theme related, so you would need to raise with your theme provider
In reply to: Getting an email when new discussion startsNo idea what you mean by trustworthy, and not for me to judge.
I have used it on several sites
In reply to: Keep users logged inbbpress just uses WordPress login, so you would need something that doesn’t expire wordpress