Forum Replies Created
-
In reply to: bbPress homepage customizationIn reply to: Users Cannot View Own Replies
great – 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 !
In reply to: Query for thread with no new answers.Lots of info stored against a topic in wp_postmeta and several parameters you could use, but the most obvious is
_bbp_last_active_time
so your sql statement would search through wp_posts for a post type of topic where postmeta post id _bbp_last_active_time was greater than a month.
Easiest way to get you head round this is to look at a forum topic in your website that has replies, and make a note of the topic number in the heading (the #nnnn eg #15108 bit!).
Then using phpmyadmin, go into wp_postmeta table and type the following into the sql query
SELECT * FROM
wp_postmeta
WHEREpost_id
=15108where 15108 is the topic id number.
You’ll see all the data stored against it, and the above should become clearer.
post type is stored in the wp-posts table
SELECT * FROM
wp_posts
WHEREpost_type
=’topic’In reply to: Can't find users!not easily from within wordpress.
How many users do you have?
Do you have phpmyadmin access? If you do then have a look at the wp_users table – don’t worry accessing the database isn’t really that scary as long as you go slowly and make sure you don’t update !
In reply to: Per Forum Permissions by Group
I’ll need to do a small update.
Small update done, version 2.4 should count the users correctly !
In reply to: Can't find users!ok, so I take it they don’t show under
dashboard>users>all users
and that they haven’t set an alias, so their display name is different than their login?
In reply to: forum permalinks plus topics forum index pagegreat – glad you’re fixed !