Forum Replies Created
-
In reply to: BreadCrumb
I want to set my forum root page to http://localhost/bibliotheque/pour-les-bibliotheques-gouvernementales/partage-dexpertise/
and not to http://localhost/bibliotheque/sujet/test/
sujet = topic
test = forum postCan you tell me what your root is in
dashboard>settings>forums>Forum Root Slug>forum root?
In reply to: where should i add code to appear in forum postssorry your link produces an error
In reply to: Confusion with Forums root and Forums slug.presume you are using
You’re welcome !
In reply to: Add Extra field in registration pageThis is a wordpress question rather than bbpress. bbpress just uses wordpress and allocates a role on first login.
so google something like
‘wordpress user registration plugin’
I did and got, and plenty of other references
20+ WordPress Plugins for Improved User Login and Registration
In reply to: BreadCrumbok, I’m planning to write some code for another purpose that will be using this function in the next few days, when I do I’ll take a look
wherever it says (think it’s more than once)
'type' => 'both', 'size' => 14 ) );change to
'type' => 'name', 'size' => 14 ) );In reply to: Delete Priveadd the following to your functions file
add_filter('private_title_format', 'pg_remove_private_title'); function pg_remove_private_title($title) { return '%s'; }In reply to: BreadCrumbThe answer is probably yes.
But I am not sure if it is just the words you want to change, or where they go to or both?
and I don’t understand exactly what you want.
where do you expect the extra
pour-les-bibliotheques-gouvernementales/partage-dexpertise/
parts of the breadcrumb to go to?
In reply to: Problems with subscribe link and notification.Can you post a url to your site?
no problem – glad you’re fixed !
In reply to: Ordering Forum in Non-alphabetical Orderashboard>forums>all forums > edit each forum
on the right hand side you’ll see
Parent : None (or a parent)
Order : the order you want these forums to appear under the parent or as a top list
The order starts at zero.
Just amend
You’ll need to register it for it to go live, try the following in your functions file
add_action( 'widgets_init', function(){ register_widget( 'BBP_Topics_Widget2'); });In reply to: Import bbPress 2.5.4 Forum into WordPress 4.1ok, thanks for the clarification.
You say that everything is working on the backend – this would suggest that the import is fine, and maybe that something else is affecting.
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 !
I copied the entire Recent Topics widget code into my functions.php
You need to copy and rename it.
Then you use this new named widget, not the old one, so need to cal the new name in your sidebar.
would be worth you raising this with them
In reply to: Translation fr does not work in bbpress 2.5.4Great – glad you’re fixed !
bbpress works with 4.1 so it not/not only a 4.1 issue
It could be a theme or plugin issue with 4.1
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: Translation fr does not work in bbpress 2.5.4presume you have done all this
In reply to: Import bbPress 2.5.4 Forum into WordPress 4.1Just to be clear, I’m expecting
I have a forum on xx running version yy of bbpress, and am trying to move it to zz.
I did
Dashboard>tools>forums>export from the xx and then vv to the new site
The issue I have is……
Can you help me ?
In reply to: Import bbPress 2.5.4 Forum into WordPress 4.1Really, I’m not kidding, have you guys read the bbPress installation guide lately?
I wrote all the step by step stuff, so it’s fine with bbpress 2.5.4
I appreciate that you are frustrated, but perhaps you’d like to start by telling us what you are trying to do rather than just rant.
And why have you been trying for over 4 months, but this is your first post here?
In reply to: Custom Forum Layouthi, can you either post a link to your site and the page with the issue, or if this is private the contact me via my website
In reply to: Need to export all forum Topics and Replies to PDFthis is a bit clunky, but should work, depending on what you want the final to look like
First forums are custom post types topic, reply or forum.
so use an exporter to get them into excel
eg
https://wordpress.org/plugins/export-2-excel/
https://wordpress.org/plugins/custom-csv-exporter/
Then use say MS word and mailmerge to pull in the data into a format
Then save the resultant word doc as a PDF
In reply to: "Forums" page missing from "Pages" tab listingthe page is a virtual one
Just add it as a link to your menu
dashboard>appearance>menus
and look for ‘links’ under the pages on the left
add it as
http://solonacademy.com/forums/
and add to menu.
Then just edit the description to Forums or whatever
In reply to: Roles Permission Questionseveral ways you could achieve this, and depend son how your site is set up.
if you have ‘approved’ forums as private and the rest as public, the you could user an ‘approve user’ plugin to prevent users accessing before approved – several out there – just google
wordpress plugin approve user registration
or you could use :
https://wordpress.org/plugins/bbp-private-groups/
to control who sees what forums