Forum Replies Created
-
In reply to: 404 Error When Jetpack Connected to WordfPress.org
also could you list what other plugins you are using, and what theme
In reply to: 404 Error When Jetpack Connected to WordfPress.orgit’s great that you have taken the time to understand the standard tests required, they do solve 80% of issues which is why we ask for them, we don’t do it to annoy you.
the issue may well be a 3 plugin combination thing – so bbpress in combination with another plugin and jetpack, which is why ideally you would carry out the tests.
Given that you cannot, then there are two elements to user access – the wordpress level and the bbpress level
eg ‘administrator’ for wordpress and ‘keymaster’ for bbpress.
I think you best bet would be to set up a user and work through the combinations to see what works and what doesn’t – eg does admin and participant work, but not subscriber and keymaster, does admin work with moderator etc etc. That would help decide what the override that is allowing ‘admins’ to see stuff is.
Then come back and report
In reply to: HTML editor doesn’t appear on bbpress 2.6.7your theme/developer has added the ‘no-js’ class to the very top, hence why the other codes are not working.
can you try this snippet
add_action( 'wp_footer', 'rew_supports_js' ); function rew_supports_js() { echo '<script>document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + " js ";</script>'; }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: How to report a spam post here?There are quite few posted most days – I get rid of them usually within a few hours, but thanks for your concern.
In reply to: HTML editor doesn’t appear on bbpress 2.6.7link to your site?
In reply to: Forum author page not working with Diviso is this a theme you have built using divi, or a theme that you have bought that uses divi?
In reply to: Editor buttons missing since 2.6.8 upgrade🙂
In reply to: Forum WidthThe width is governed by a div with the class rt-container, but it is not clear what craetes that.
Try this in the custom css part of your theme
.rt-container { width: 1500px !important; }
In reply to: Paste as plain text for the Teeny Editor?sorry, that’s as good as I can get it. I googled around a bit, but could find nothing else.
In reply to: HTML editor doesn’t appear on bbpress 2.6.7are you refreshing any caching plugins?
In reply to: HTML editor doesn’t appear on bbpress 2.6.7new version of bbp style pack just released that should work in all cases
In reply to: Paste as plain text for the Teeny Editor?it’s a wordpress rather than bbpress issue.
The documentation could be clearer, but that section refers to the tinymce not the text editor
I’ve not tried it, but this might help
In reply to: Best way to extend member profiles?buddypress has profile fields –
In reply to: Can I get the latest reply ID by topic ID?🙂
In reply to: Can I get the latest reply ID by topic ID?bbp_get_topic_last_reply_id( $topic_id)
In reply to: Remove with css who created postput this in your themes custom css part
.bbp-topic-started-by {
display :none ;
}In reply to: HTML editor doesn’t appear on bbpress 2.6.7There is a temporary fix, either
1. use code
if( !function_exists( 'bbpress_browser_supports_js' ) ){ function bbpress_browser_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; } add_action( 'wp_footer', 'bbpress_browser_supports_js' ); }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
or
2. install and activate
In reply to: bbp user ranking conflict with Divi?I’m just trying stuff !! 🙂
Intermittent problems are always hard to fix
In reply to: forum appears in google searchIn reply to: bbp user ranking conflict with Divi?I don’t think it will make a difference, but try
dashboard>settings>permalinks and just click save – that just resets them
In reply to: Editor buttons missing since 2.6.8 upgradethis is a temporary fix, the bbpress authors are looking at a permanent one
if( !function_exists( 'bbpress_browser_supports_js' ) ){ function bbpress_browser_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; } add_action( 'wp_footer', 'bbpress_browser_supports_js' ); }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: HTML editor doesn’t appear on bbpress 2.6.7as far as I understand, the issue is detailed in changeset 7190 – yes?
so it is basically to hide the ‘generate passwword’ in form-user-passwords.php if the user’s browser does not support js or it is disabled.
If so, at the moment all bbpress pages end up with a no-js class as bbpress sets ‘no-js’ as the default, which means that the quicktags do not display on the topic and reply forms as they need js but the css thinks it is no-js, and the visual editor does not work for the same reasons.
At the moment you only test for js using the script technique in form-user-passwords.php viz
<script type="text/javascript"> document.body.className = document.body.className.replace( 'no-js', 'js' ); </script>
so I would suggest 1 of 2 approaches
1. putting this test in more generally so it runs on any bbpress page (as usefully suggested by @webcreations907) maybe by adding to the main function, or adding a filter in \includes\core\filters.php to run the script
so something like :
add_filter ('bbp_body_class' , bbp_test_js) ; function bbp_test_js ($classes) { ?> <script type="text/javascript"> document.body.className = document.body.className.replace( 'no-js', 'js' ); </script> <?php return $classes ; }
so that others could disable it
2. changing the class to bbp-no-js should work, if you do this in the bbp_body_class function and the form-user-passwords.php and in css, then I can no reason why it would not work if that is the sole intention of this.
In reply to: Topic or forum (un)subscription hook🙂
In reply to: bbp user ranking conflict with Divi?ok, so when this happens
– is it to just one person, the same person, different people, all people accessing the site
– is the site unusable, does it freeze, or is it just if they try to do something ?In reply to: HTML editor doesn’t appear on bbpress 2.6.7@mr18 – then suggestion is to either use this in a child theme functions file, which will not lose settings on a main theme update, or use code snippets, which does not change on a theme update.