Forum Replies Created
-
In reply to: Visual Editor not showing
oh, and since you have changed from http to https – I don’t think it will make a difference but try resetting permalinks – just grasping at straws here !
dashboard>settings>permalinks and just click save
In reply to: 404 user profileok try resetting the permalinks as a first step
dashboard>settings>permalinks and just click save
In reply to: Visual Editor not showingcan only suggest that you delete the user and reset them up – you could spend hours trying to tresolve it !
In reply to: Visual Editor not showingand both definitely have editor set in
dashboard>user<all users>edit user>personal options>disable the visual editor when writing
In reply to: Automatically publish on Facebook PageI am not aware of how to do this
In reply to: Clicking reply links doesn’t workIt 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 twentyfifteen, and see if this fixes.
Then come back
In reply to: How To Create A bbPress SideBarok, put it into the child theme and remove form the parent theme – that way it doesn’t get lost on updates
so you have a bbpress specific sidebar as per
yes ?If so then in your new bbpress.php replace
line 49 ish
<?php get_sidebar(); ?>
with
<?php dynamic_sidebar( 'bbp-sidebar'); ?>
In reply to: few problems with BBpressok, much of this will be your theme or standard bbpress
add this plugin and use it to style
on registration, bbpress uses wordpress registration, so looks like that needs troubleshooting
In reply to: bbp_list_forums – add_filter help!most functions return a variable, so filters need to also.
these ‘before..parse args’ ones always need $args returned
In reply to: Looking for last Tapatalk pluginok, I was unaware of that, and it seems that it has been withdrawn as it is not on their website
In reply to: bbp_list_forums – add_filter help!Try this
function cxr_subforum_filter($args) { $args = (array ( 'before' => '<tr>', 'after' => '</tr>', 'link_before' => '<td>', 'link_after' => '</td>', 'separator' => '<br>', )); return $args ; } add_filter( 'bbp_before_list_forums_parse_args', 'cxr_subforum_filter' );
In reply to: Looking for last Tapatalk pluginAs far as I know there is only a wordpress version
In reply to: Problèmes notifications: mails envoyés aux bloquésThis is a known bug
add this to your functions file
// Blocked users should NOT get an email to subscribed topics function bbptoolkit_fltr_get_forum_subscribers( $user_ids ) { if (!empty( $user_ids ) ) { $new_user_ids = array(); foreach ($user_ids as $uid) { if (bbp_get_user_role($uid) != 'bbp_blocked') { $new_user_ids[] = $uid; } } return $new_user_ids; } else { return $user_ids; } }; // add the filter add_filter( 'bbp_forum_subscription_user_ids', 'bbptoolkit_fltr_get_forum_subscribers', 10, 1 );
In reply to: How To Create A bbPress SideBarok, the following assumes you know how to use FTP, if not come back
You need to find
wp-content/themes/salient/page-sidebar.php
copy this and rename it to
wp-content/themes/salient/bbpress.php
so that you end up with both ie
wp-content/themes/salient/page-sidebar.php
wp-content/themes/salient/bbpress.phpbbpress will now use this for all forums, so you should see a sidebar on all forum pages
then see which sidebar is appearing, and we can amend it if needed.
We do need to talk about child themes at a later stage
In reply to: How To Create A bbPress SideBarok, do you want the sidebar on the left or right?
ok, come back and let us know
In reply to: Visual Editor not showingok, so you need to define it down to server or client
If you log in as test – it works – yes?
If so log in as him and see if that works.If it does then it is his PC
If it doesn’t then it is server.
In reply to: How I change theme bbPress?bbpress will use your wordpress theme. If you want to style and add features use
In reply to: How To Create A bbPress SideBarok quick questions –
1. are you getting any sidebar at the moment,
2. and is the presence/absence consistent on all forum pages?
ok, the issue is I suspect with the moderation tools plugin.
I haven’t opened that one up to see what it does, and I see you have posted the issue on their support forum to see if they can help.
suspect it would be beyond free help to look at issues between the two. If you like contact me via http://www.rewweb.co.uk
what plugins other than bbpress are you using?
In reply to: bbp_list_forums – add_filter help!I’d suspect issues with the quotation – different systems seem to alter these – try making them consistent – this might work
function cxr_subforum_filter() { bbp_list_forums(array ( 'before' => '<tr>', 'after' => '</tr>', 'link_before' => '<td>', 'link_after' => '</td>', 'separator' => '<br>', )); } add_filter( 'bbp_before_list_forums_parse_args', 'cxr_subforum_filter' );
If it doesn’t then come back and I’ll take a deeper look, midnight here and on way to bed !
In reply to: Support Forum Right?or is this not a support forum for BBpress users
yes this is, but you misunderstand how open source software works
People write open source software in their own time and offer it for free. Under the open software foundation the software is offered without any warranty or support. You use it if you like and not if you don’t. It is perhaps a bit much to expect software authors to answer every question someone might have about that software, or indeed having offered that software to the world for free, that they should invest any time to this unless they wish to.
If someone gave you a car for free, would you complain because they don’t come and service it for you?
I am not a bbpress author, I’m just a guy who uses this software, and in turn spends some of my time in trying to help others.
I have seen your questions, and there are many reasons why it might not work.
The most obvious are in https://bbpress.org/forums/topic/before-posting/ and in particular the troubleshooting section on plugins and themes will probably get you to a root cause.
Once you have worked through those, do come back.
In reply to: How To Create A bbPress SideBarIn reply to: How To Create A bbPress SideBarsuggest you pose the question to their support team, as a paid theme I of course can’t see it.