Search Results for ' . default . '
-
Search Results
-
I am not good with English and use translation software.
By default, new posts are displayed at the bottom, so I used the plugin “bbPress – Sort topic replies” to change the sort order.
This plugin allows new posts to appear at the top, but I would like to change the URL in the notification email when a post is made to the board.
Currently it says “https://✕✕✕✕/forums/topic/bulletin-board/page/19/#post-4536”
and when accessed from here, the user is taken to the last page, page 19.
I would like to delete the “page/19/” part of this URL, but I don’t know where to delete it.Please help me.
Topic: Auto approve topics?
Hello!
Pretty much as it says in the title.
How do I configure BBpress to auto approve all new topics and not put them into a moderation queue by default?We use a spam cloud service so I am not too worried about spam topics as they will be filtered out automatically.
Thanks in advance
Kind regards
AngryWarriorHi
wordpress 6..0.2
bbpress 2.6.9i want to let users edit their avatar with the Basic User Avatars plugin
i want to be edited in the profile edit page
forums/user/name/edit/
i tried to write this:
<?php echo do_shortcode(“[basic-user-avatars]”); ?>
in TEMPLATES/DEFAULT/EXTRAS/SINGLE-USER-EDIT.PHP
dont work
how can i do then
thanks
regardsTopic: My bbPress looks ugly
New to this. I just installed bbPress to my site and something’s wrong with the default setting. Notice on these two pages, the login button and ‘keep me signed in’ button and text appear to be in random places. How can I fix this? :
sketchbookers.com/forums1
Hi, I’m having an issue where my forum notifications are not being formatted correctly. None of the spacing that exists in the default notification message exists in the resulting email, and I have confirmed that the message is being sent using the ‘text/html’ content type header. I added a
<br>
tag to the notification email as a test as well, but it was sent in plain text and not rendered as a line break. Anything I should try?The default bbpress topic index page does not look good on mobile at all. I would like to customize it. I could see that the bbpress.org topic index page looks good. They were able to remove stuff like this Started by: ollietubb1 in: Troubleshooting and also remove the freshness icon and name from the topic index page to get things well organized.
Open this URL on your mobile to see: https://bbpress.org/forums/
Please, could you guide me to do the same thing to improve the mobile view of the topic index page? I am using bbpress Version 2.6.9
Thanks in advance.
Topic: Template in Block Themes?
BBpress keeps loading the empty index.php in the TwentyTwentyTwo Child theme I’m working on, which loads a WSOD.
I can’t get any of the template filters to use one of the html files, so temporarily have it working with the index.php file as:
wp_head(); block_header_area(); block_template_part( 'page-inner' ); wp_footer(); block_footer_area();
And… its almost all working? But, this can’t be the right way to get it to use the new default page template in the block theme.
Thoughts? Ideas? How can I get it to use the new theme templates?
Thanks!
Hi,
I’m trying to customise the toolbar in TinyMCE.Initially I just enabled the advanced one:
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = true; $args['teeny'] = false; $args['quicktags'] = false; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
I thought of adding a button for underline and it led to trying to get only what I needed in one toolbar:
function bbp_enable_visual_editor( $args = array() ) { $args['tinymce'] = array('toolbar1' => 'formatselect, bold, italic, underline, bullist, numlist, blockquote, alignleft, aligncenter, alignright, link, strikethrough, forecolor, outdent, indent, undo, redo'); $args['quicktags'] = false; $args['teeny'] = true; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
This is causing it to repeat some things in toolbar 2 (as well as the ability to toggle toolbar 2 on and off). I tried adding toolbar 2 to the code above, but then it goes back to default. I could stop there though and just add underline and the tools that’s in toolbar 1 by default, but I’m curious if I can customise things further.
To my question:
Is there a way to add everything in one toolbar and then disable toolbar 2?
Or is there a way to get the toogle for toolbar 2 back when I’ve customised toolbar 1?I also tried enabling teeny which would’ve worked best, but then I lose the forecolor toolbar box so I’d need a way to add it back.
Thanks in advance