Forum Replies Created
-
In reply to: “Replies Created” & “Topics Started” 404 URL Error
try
dashboard>settings>permalinks and just click save – this resets the permalinks
In reply to: [bsp-profile] not Working for mesurprised me as well 🙂
In reply to: [bsp-profile] not Working for memy code calls site_url() as a function which weirdly gets the wordpress url, whereas home_url() gets the site url !!
I’ll amend the code and release a new version tomorrow
In reply to: [bsp-profile] not Working for mewhat is in
dashboard>settings>general>site Address (URL)?
In reply to: Remove create New Topic ingreat – glad you are fixed
In reply to: Pagination doesn’t workgreat – thanks for letting me know
In reply to: Remove create New Topic inquickest way is to add this :
.bbp-topic-form { display: none; }
into the custom css of the style pack plugin
In reply to: Previewok, thanks for reporting back
In reply to: Pagination doesn’t workI wrote a test plugin to fix this a while ago, try it and let me know if it fixes
In reply to: Previewpersonal preference – some might want just front end, some backend, some both
In reply to: More link on body🙂
🙂
great – so you are fixed – yes ?
In reply to: How to close or open topic by the author ?🙂
In reply to: More link on body2. I can’t publish topic or reply with the public link, ad example
you should be able to – I cannot say why this is not possible for you
In reply to: More link on body1. It is possibile to enble partecipant to remove own topic/reply?
once activated go to
dashboard>settings>bbp style pack>Topic/Reply Display
and look at items 18 & 19
In reply to: More link on bodyok,
dashboard>settings>discussion>comment moderation and set the number of links to the value you want
In reply to: Login, Register and Lost Password Redirectsbbpress just uses wordpress in the background for login. When login fails wordpress seems to take over.
I added some code in
dashboard>settings>bbp style pack>login failure
to try and overcome this
In reply to: How to close or open topic by the author ?I’d not spotted that it did that, it should just display on the topic !
I’ll release a new style pack with a correction.
If you have used my code, then this is the change at line 2098, with the lines before and after
if ( empty( $topic )) return; //if not a topic but a reply to that topic, then return if (bbp_get_reply_id() != bbp_get_topic_id( (int) $r['id'] ) ) return ; //if participant and not their own topic, then return
In reply to: More link on bodydo you you mean the numbers of links, or that participants can add any links?
In reply to: Remove Category Hyperlink?great – glad you are fixed !!
In reply to: Remove Category Hyperlink?ok so
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.phptransfer this to your pc and edit
find
<?php do_action( 'bbp_theme_before_forum_title' ); ?> <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a> <?php do_action( 'bbp_theme_after_forum_title' ); ?>
and replace with
<?php do_action( 'bbp_theme_before_forum_title' ); ?> <?php if (!bbp_is_forum_category( bbp_get_forum_id())){ ?> <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a> <?php } else { ?> <div class="bbp-forum-title"> <?php bbp_forum_title();?> </div> <?php } ?> <?php do_action( 'bbp_theme_after_forum_title' ); ?>
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/loop-single-forum.phpbbPress will now use this template instead of the original
you will probably need to add some styling to the class “bbp-forum-title”
In reply to: Posts not showing in topic indexok, sorry too site specific a question to be able to answer.
In reply to: Keymaster cannot see pending repliesok, so one user one post.
Not sure I can fix that without a set of repeatable steps.