Forum Replies Created
-
In reply to: Stop users from making topics
@bobey but that would stop them making replies as well
In reply to: No Forums Link in DashboardIt could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: hyperlinks / a inside forum content@kendorama yes that should do it
In reply to: restricting answers to adminHave edited the above to make it more accurate, but still may have errors !
In reply to: restricting answers to adminIf you have FTP access then :
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
find
wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php
Make a copy of this file, 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-reply.php
bbPress will now use this template instead of the originalthen you need to chnage the line
<?php if ( bbp_current_user_can_access_create_reply_form() ) : ?>
to do a check for keymaster and author
something like
<?php if ( bbp_is_user_keymaster()) || bbp_get_reply_author_id() == bbp_get_current_user_id() : ?>
bbp_get_reply_author_id() might need to be bbp_get_topic_author_id() – you’ll need to try it to see
Give this a go, I’m very short of time at the moment, so haven’t tested !
In reply to: Adding Custom View Shortcode@twist360 I’d like to save this solution in my folder of useful info.
To save me copying and cobbling together the final answer from the above, can you post the final code you did for the solution below as one package
This will help others and be useful
Thanks Robin
In reply to: Help with Custom ViewI have to say I think your programming skills are probably better than mine !
The views bit hooks to bbp_has_topics, so the args are the key part to get this going, rather than needing to alter php files
see
for how another user got a custom view with meta data working – I’m a bit tied up at the moment to write the answer, but judging by your post above you should be able to work it out !
If you don’t then come back and I’ll try and help when I get some time
If you do, please post the whole solution here in the spirit of sharing – it would be a good one to have for other people, and to add as a plugin to the other plugin.
In reply to: hyperlinks / a inside forum contentor add the following to your style.css
. bbp-reply-content a:link, a:visited, a:hover { color: blue !important ; }
In reply to: URGENT – Nickname displays in address barok, I’m not quite clear on what you want to happen
so when I register I complete what information?
and which bits of that information do you want to hide?
and what do you want to happen instead
please come back with a sequence, so that we can work out the best solution
In reply to: list of topics displyed across all forumsok, I’ve had a look.
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: ERROR Author LinkThe link to padelstar works
the link to EVELYN PADEL just seems to go to another page
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Replies not displaying; theme-relatedGreat – glad you’re fixed !
In reply to: Stop users from making topicsGreat – glad you’re fixed !
In reply to: Unable to see and create topic : front endthat’s a known with that plugin from looking at the support forum
https://wordpress.org/support/plugin/custom-post-type-page-template
Sorry you’ll need to google to find one
In reply to: Are user can create topic in the front en?yes, just create a wordpress page and put one of the following shortcodes in it
[bbp-topic-form] – Display the ‘New Topic’ form where you can choose from a drop down menu the forum that this topic is to be associated with.
[bbp-topic-form forum_id=$forum_id] – Display the ‘New Topic Form’ for a specific forum ID.In reply to: list of topics displyed across all forumsIt is difficult to understand your question – don’t worry it is unlikely that I would understand your native language !!
Can you send me the example via my website
In reply to: Users Answer not in profileNot quite sure why, but the replies class is not showing
Try adding
.forums.bbp-replies { clear: both !important; }
to your style.css
that fixed it in my browser
In reply to: Unable to see and create topic : front endok,
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Replies not displaying; theme-relatedok, it’s caused by your themes style sheet
line 5600 says
.no-touch .reply { visibility: hidden; }
and this is hiding bbpress reply
you could try adding
#bbpress-forums .no-touch .reply { visibility: visible !important; }
to your css file
see
In reply to: Unable to see and create topic : front endIn reply to: Forum, Topics, Replies menu items not appearing?if it’s not a plugin issue viz
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
the it is likely to be a a theme issue
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
In reply to: Stop users from making topicsok, at least we know you’ve got the right file !
Try the following
delete all the content from wp-content/themes/twentyeleven/bbpress/content-single-forum.php
and then paste the following in
<?php /** * Single Forum Content Part * * @package bbPress * @subpackage Theme */ ?> <div id="bbpress-forums"> <?php bbp_breadcrumb(); ?> <?php bbp_forum_subscription_link(); ?> <?php do_action( 'bbp_template_before_single_forum' ); ?> <?php if ( post_password_required() ) : ?> <?php bbp_get_template_part( 'form', 'protected' ); ?> <?php else : ?> <?php bbp_single_forum_description(); ?> <?php if ( bbp_has_forums() ) : ?> <?php bbp_get_template_part( 'loop', 'forums' ); ?> <?php endif; ?> <?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?> <?php bbp_get_template_part( 'pagination', 'topics' ); ?> <?php bbp_get_template_part( 'loop', 'topics' ); ?> <?php bbp_get_template_part( 'pagination', 'topics' ); ?> <?php elseif ( !bbp_is_forum_category() ) : ?> <?php bbp_get_template_part( 'feedback', 'no-topics' ); ?> <?php endif; ?> <?php endif; ?> <?php do_action( 'bbp_template_after_single_forum' ); ?> </div>
save and then try it.
In reply to: Participants aren't able to edit their own topicsok, but with default theme twenty fifteen, the user set to participant, and just bbpress the edit will show, so something is affecting this.
In reply to: Stop users from making topicsjust edited the above !
Forgot the theme directory in the first post !
and have just edited earlier post to correct for future 🙂
In reply to: Stop users from making topicsno problem, I remember my first time playing with FTP, which was only two years ago !
Great that you making progress !
the directory should be
wp-content/themes/twentyeleven/bbpress