Forum Replies Created
-
In reply to: Undefined Index Notices
ok, that’s an error from your theme, so we’d need to see that file. Do you know how to look at theme files using ftp ?
In reply to: Conflict between forum archive slug and page nameok, come back when you have something more, and I’ll try to help.
If you do, please let us have a list of your plugins π
In reply to: Change “Forum” labellink to your site and example please
In reply to: Learning curve?contact me via
In reply to: Login Form on Topics, Forum pageglad to have helped π
In reply to: Login Form on Topics, Forum pageoops yes there is also a form-reply.php which has the same – it’s in the same directory
In reply to: Login Form on Topics, Forum pageIn reply to: Login Form on Topics, Forum pagefind
wp-content/plugins/bbpress/templates/default/bbpress/form-topic.phpFTP transfer this to your pc and edit
find starting from line 254
<?php if ( ! is_user_logged_in() ) : ?> <?php bbp_get_template_part( 'form', 'user-login' ); ?> <?php endif; ?>
and delete these lines
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-topic.phpbbPress will now use this template instead of the original
In reply to: Login Form on Topics, Forum pageit come from
bbpress\templates\default\bbpress\form-topic.php
are you fine with FTP and changing files – if so I’ll give you intructions
In reply to: Login Form on Topics, Forum pagelink 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