Forum Replies Created
-
In reply to: Activate page
there is no [bbp-activate] shortcode
https://codex.bbpress.org/shortcodes/
what are you trying to do?
In reply to: Truncated usernamesSorry, but splitboard.com is 14 characters long and looks complete, and without knowing what it should say, telling us that it is truncated doesn’t really help.
I am struggling to know what your issue is?
In reply to: User registration on multisiteIn reply to: bbPress homepage customizationcontact me via my website
Regards
In reply to: bbPress homepage customizationIn reply to: bbPress homepage customizationIn reply to: Users Cannot View Own Repliesgreat – glad you’re now fixed!
In reply to: Topics not appearing in forum@themesdefrance – thanks for posting that – we know that wp4.0 changed the way it worked with search, so that all makes sense !
@anmari – does that help you?EDIT – @anmari have just seen your other thread that it’s fixed https://bbpress.org/forums/topic/users-cannot-view-own-replies/#post-154445
Hey great – thanks for posting the solution so far – it will help others reading this thread later.
Let us know how you get on with the templates !
sorry, there is a very minor error, a missing _
add_filter( 'bbp_get_dynamic_roles', 'add_new roles', 1 );
should read
add_filter( 'bbp_get_dynamic_roles', 'add_new_roles', 1 );
I’ll update the codex!
In reply to: How does it choose the files to useThe template you choose in the page only applies to that page, you need to set up the file as bbpress.php to get it used throughout (I don’t write bbpress so can’t tell you why!)
In reply to: Custom Fields not displaying when editing postgreat – thanks for posting the solution, so many don’t and it helps anyone coming across this later on. 🙂
functions file should be fine.
Can you post the exact code you put in the file.
see
https://codex.bbpress.org/bbpress-user-roles-and-capabilities/
and
you need to play with setting up some new roles probably one that has topic capabilities but not reply capabilities, and setting that to the default.
In reply to: Forum Page Not Foundgreat – glad you’re fixed !
In reply to: Travelify Themeeither you have fixed your issue or you expect us to be mind readers – please confirm fixed, or detail the issues
In reply to: Per Forum Permissions by GroupIt 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: Application forumI’d not expect any forum software to support this function and not at all sure how this would work.
Your explanation above is not clear in terms of
How a new ‘applicant’ would post an application on a forum without registering first
Then who would be able to see his post (and how do you stop interlopers who may have registered in disguise seeing this – how do you tell the difference?)
And what he would be able to see apart from his topic?Why are you using a forum for an application, why not just use manual registration? or an application form? lots of plugins to do that eg cformsII
In reply to: Pay Per Thread on selected forums only..?1) just use the
[bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
shortcode on the page to do that
2) That can all be done using coding, but would require a lot of code and expertise both within bbpress/wordpress and to link it to a payment product to take the money, and you’ll lose a lot of revenue in commission on 75p payments on say payal, who take a 20p a transaction charge as well as 3.4% commission.
Ballpark say £100-£200 for a coder to write that all for you (without looking that’s the sort of figure I’d expect to charge to write that, but it could be a lot more)
You would do better to look at a ‘membership’ site plugin, and take a payment per say ten ‘ads’, and use something like ‘bbp notify’ to know when they’ve posted, and a simple excel spreadsheet which you manually update. Then suspend membership or block posting when they have used up their limit.
In reply to: Forum topics template different to Index pagesTopic pages are not appearing. They appear as links on the indexes, and I can create new ones, however if I click them, I am taken to a page of a messed up template
so I suspect that the links are working fine, it’s just the template is conflicting, suspect theme issue
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.
In reply to: Custom Fields not displaying when editing postAt a guess (and I haven’t checked) I’d say that
bbp_get_forum_id()
works for a new topic, but returns a null when editing, hense your ‘==’ is never fulfilled.
Since you should have $topic_id set in either case, maybe try something like
$forum_id = bbp_get_topic_forum_id( $topic_id );
to get the forum or just use that if editing?
Have a play and see if that fixes.
In reply to: Participant can access Dashboard?you can just untick the toolbar option for each user in dashboard>users and edit a user
If you want to disable for all but admins, put this in our functions file
<?php //disable toolbar for non-admins if (!current_user_can('manage_options')) { show_admin_bar(false); }
In reply to: Full page width with left sidebar twentyfourteengreat – hopefully it will be a permanent fix soon !
In reply to: Query for thread with no new answers.great – glad you’re fixed !