Forum Replies Created
-
In reply to: placeholder text in new topic form
try changing the argument line
if (($args['context'] == 'reply' || $args['context'] == 'topic') && $post_content == '') $output....etc.In reply to: Conflict between forum archive slug and page nameI’ve not used that plugin (as I’ve not used genesis themes) – does it have any settings ?
In reply to: Undefined Index Noticesok, can you try
dashboard>tools>forums>repair forums and try recalculating replies
In reply to: index page is gonegreat – glad you are fixed !
In reply to: Undefined Index Noticesok, looks like something is a bit corrupt – how did you delete the demo data?
In reply to: Undefined Index Noticesok, what I need is for you to copy this file to your pc
/var/www/html/xxxx/wp-content/themes/cera/bbpress/content-statistics.php
then open it, and post the contents in this thread please
In reply to: index page is goneok, as a start try
dashboard>settings>permalinks and just click save – that resets then and may (may not will) fix !
if not come back
In reply to: Undefined Index Noticesok, 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 avatar