Search Results for '+.+default+.+'
-
Search Results
-
Hi
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
Greetings
I set up a test forum and created a private category with two sub-forums inside. On forum index the category is shown with its two sub-forums listed below it, as intended.
Once I post a topic in one of the sub-forums the list disappears below the category on forum index. I can still see them if I click on the category however.
It’s similar to this bug here, but it doesn’t seem to matter if there’s a description or not
https://bbpress.trac.wordpress.org/ticket/2085The bug only happen when the category is private or hidden. Should I do a bug report about it? Is there any known solutions?
WordPress: 6.0
Plugins: bbPress 2.6.9
Theme: Tried various WordPress default themes.Thank you in advance