Search Results for 'bbpress'
-
Search Results
-
Topic: Title links do not work
Hi community, I have a problem with bbpress
After the upgrade to bbpress 2.6.2 the links of the titles of both topics and forums do not work.
For example in: https://www.racingonlineclub.com/foros/
The first title don’t link to forum “Ayuda y preguntas Frecuentes”
Instead the html code seems correct in the inspector
<a class="bbp-forum-title" href="https://www.racingonlineclub.com/foros/foro/ayuda-y-preguntas-frecuentes/">Ayuda y preguntas frecuentes</a>Thanks for your help and regards.
Topic: Styling Topic Title
WP 4.9.4
Suffusion Child Theme, 4.4.9
Browsers, latest versions of Firefox and Chrome
PHP version 7.2.7
bbPress Version 2.6.2Topic Title: http://forums.typeheritage.com/topic/tangier/
Page Title: http://forums.typeheritage.com/status/I want topic titles to match page titles—green, not orange. I am semi-clueless about coding but have tried a few ideas that don’t work.
Can someone suggest a css entry to solve this problem?
Many thanks, Anna
Hi,
I know the main WP code is now adding the new Google link tag of UGC to links in comments – could BBPress be amended to allow an option of automatically adding this UGC tag to all external links?Thanks,
Dale.Good afternoon. I hope you can understand me, my English is not very good, I’m from Spain
We use the BBPRESS plugin on our website, and we have a problem with the display of the forums’ root.
The actual date of the last post is not shown in the forum root.
Example that I enclose with screenshots:
At the root of the forum, “CEx – Fire protection” appears on debate last published 1 week and 4 days ago (img1), but when you enter the debate, you can see which last post was 22 hours ago (img2 )
Why might this be happening and how can we solve it?
Thank you
Image 1
http://animatek.es/wp-content/uploads/2019/11/IMG1.pngImage 2
http://animatek.es/wp-content/uploads/2019/11/IMG2.pngThe ALT + SHIFT + M hotkey does not work inside the editor of bbPress (even though I have the media plugin enabled and the functional button on the toolbar.
I raised this both on TinyMCE GitHUB:
https://github.com/tinymce/tinymce/issues/5223
And WordPress:
https://wordpress.org/support/topic/insert-media-hotkey/#post-12174886
TinyMCE support said:
TinyMCE doesn’t provide any shortcuts for the image, nor media plugin by default so this is likely an issue with wordpress or wordpress plugin you’re using. Since there is nothing we can do to fix the issue, I’m going to close this and suggest you log an issue with wordpress or wordpress plugin directly.
WordPress support said:
AFAIK that hot key is unique to the post edit screen only when using the classic editor. It’s not the editor itself that it’s tied to, but the edit screen for posts. If the block editor had a media button it would probably still work there. However, the bbPress forum post screen is not the same as a WP post edit screen. You would need some JavaScript code that listens for the specific keyboard event and when it occurs, launch the media modal.
Therefore, it sounds to me that bbPress needs some tweak to cater for the advertised hotkey for inserting images. Can this be considered please? All other hot keys are functional.
Thank you.
Topic: Registration page redirects
I just installed bbPress plugin and went through the setup but for some reason the registration redirects to the home page when I press view on the pages dashbored
Topic: Forum Visibility Settings
Hi there… scary hour… I was told by a participant that 4 old forums that were all set to Private / Hidden were showing for them. “Click to Activate Forum visibility” is not checked and never has been.
I have got round this for now by putting the old forums in the ‘bin’ for now but this is not great and could cause trust issues re data.
incase relevant bbpress is also used with Woocommerce Memberships and bbp private groups and private groups bridge
It had been working for some years. no plugins are out of date etc.
Any ideas?
Hello,
I have the last version bbPress and Woocommerce suscriptions.
I have restricted my topics, but it is visibility for all users. Pages, Posts and Custom Post Type work fine. But topics don´t work. WHY??
Topic: Rating of Topics by members
So I am using this extra function so that extra HTML tags are not stripped for non-admin users:
add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' ); function ntwb_bbpress_custom_kses_allowed_tags() { return array( // Links 'a' => array( 'class' => true, 'href' => true, 'title' => true, 'rel' => true, 'class' => true, 'target' => true, ), // Quotes 'blockquote' => array( 'cite' => true, ), // Div 'div' => array( 'class' => true, ), // Span 'span' => array( 'class' => true, 'style' => true, ), // Paragraph 'p' => array( 'dir' => true, 'style' => true, ), // Code 'code' => array(), 'pre' => array( 'class' => true, ), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'class' => true, 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ), // Tables 'table' => array( 'align' => true, 'bgcolor' => true, 'border' => true, ), 'tbody' => array( 'align' => true, 'valign' => true, ), 'td' => array( 'align' => true, 'valign' => true, ), 'tfoot' => array( 'align' => true, 'valign' => true, ), 'th' => array( 'align' => true, 'valign' => true, ), 'thead' => array( 'align' => true, 'valign' => true, ), 'tr' => array( 'align' => true, 'valign' => true, ), 'video' => array( 'controls' => true, 'width' => true, 'height' => true, 'source' => array( 'src' => true, 'type' => true ) ) ); } // ==============================================================Notice the section at the end for videos? This is the issue. These videos are inserted using the TinyMCE Video plugin. Once it is inserted it looks something like this:
<video controls="controls" width="300" height="150"> <source src="https://www.publictalksoftware.co.uk/videos/forum/pts-test-video.mp4" type="video/mp4" /></video>The problem is that for a non-admin user the < and /> wrapped around the source tag is getting escaped. Thus the syntax is not correct and the video module will not play.
Robin suggested I switch off moderation:
add_filter( 'bbp_bypass_check_for_moderation', '__return_true' );
And to try removing this filter:remove_filter( 'bbp_new_reply_pre_content', 'bbp_filter_kses', 30 );But i can’t get it to work. The only way to insert one of these videos is if a admin user does it so that the escaping of the source tag does not happen.
Can this be resolved?
It is not a bug with the TinyMCE Video plugin. It is a bug only with non admin users inserting the videos. I assumed BBPress is escaping the inner content. Anyone got any ideas?
Thanks.