Forum Replies Created
-
In reply to: bbPress Moderation
@cyclesha – do come back either way !
In reply to: BreadCrumbI’ve just re-read your original post, and you are not using bbpress breadcrumbs, but rather those that come with your theme – yes?
In reply to: where should i add code to appear in forum postsDo you know what the code is that you would add at that location?
In reply to: bbPress Moderationyou link gives 500m errors
Suggest you talk to your host provider first, and then come back here if you need further help
In reply to: BBpress widthIām kinda new to the whole website creating thing, and really need some help with this one.
we all were once, and not so long ago š keep asking Q’s – that’s the way you learn!
In reply to: BBpress widthok, gentle response !!
your forum is sitting within a class of .entry-content which is set to max-width: 474px;
so you need to add
.entry-content { max-width: 100% !important; }
to your theme style.css at the end
Strictly speaking you should add this to a child theme
but if you add it to your main theme, juts keep a note of it, as you will need to re-add it should your theme be updated
Come back if anything not clear, and I’ll help further !
In reply to: BreadCrumbI 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