Quantcast
Channel: bbPress.org » All Posts
Viewing all 3558 articles
Browse latest View live

Remove specific buttons from TinyMCE

0
0

I’m using this guide to show TinyMCE in my bbpress forum:
https://codex.bbpress.org/enable-visual-editor/

function bbp_enable_visual_editor( $args = array() ) {
    $args['tinymce'] = true;
    $args['teeny'] = false;
    return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

Is it possible to remove or hide some buttons in Visual tab?

I want to hide those:

Can someone help me?

Thanks 🙂


Reply To: Remove specific buttons from TinyMCE

0
0

Done. Thank you anyway 🙂

Here goes the correct code for who might be interested:

function bbp_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
$args['teeny'] = false;
$args['tinymce'] = array(
'toolbar1' =>'bold, italic, blockquote',
);
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

Reply To: Topic tag conditional for specific word

0
0

For anyone else looking for an answer I found it:

if( has_term( 'myterm', 'topic-tag' ) ) {
    // do something
}

Reply To: Only the first user can write a tag?

Animation Company In Mumbai

0
0

Animation Company In Mumbai
iRealities Studios is an artist-driven, full-service 3-D animation and visual effects studio with production offices in Mumbai, India. We develop content and create state of the art visual imagery for full-length feature animated films.

Animation Company In Mumbai

I want my bbpress content aligned to left and not center

0
0

Good day BBpress I am Eze a new BBpress user. I am using BBpress version 2.5.13 and my site is http://haleze.com
The alignment of my content in BBpress forum is center whereas I want it to be left aligned like regular posts which look attractive.
I will be grateful if you could be if help. Thank you.

Reply To: How do I remove the poster's IP address from the post display?

0
0

You can remove ip address from bbPress posts by using the below custom code in the functions.php file of your child theme or in another custom plugin.

function vvd_no_view_ip( $author_ip, $r, $args ){
	return __return_empty_string();
}
add_filter('bbp_get_author_ip','vvd_no_view_ip', 10, 3 );

How to change topics layout?

0
0

Hello guys,

Is it possible to change topics layout in mobile/tablet only?

From this:

To this:

It’s much better mobile friendly…

Can someone do it?
Or is there any plugin that makes possible this modification?

Note: Not global, only for mobile/tablet.

Thank you in advance 🙂


Reply To: How to change topics layout?

Free BBPress Theme

0
0

Hello, does it any FREE BBPRESS themes?
Is it possible for main site use Vantage Theme + Visual Composer and for BBPRESS another one?
Does anybody make that works with VisualComposer Templaterra plugin?

Thx.

Reply To: Free BBPress Theme

0
0

bbpress just uses much of your theme’s style

additionally you can use

bbp style pack

to improve it’s look

On Main Forum Page: Add “Subscribe” Link by Each Topic

0
0

Is there a way to add a “Subscribe” link by each topic title on the main forum page? The site is not public, so I can’t share a link.

Reply To: On Main Forum Page: Add “Subscribe” Link by Each Topic

Reply To: How to change topics layout?

0
0

Hey Robin, I already contacted you 🙂

Reply To: Free BBPress Theme

0
0

thx. Yeah it’s working a bit what I want.

Any idea of how to remove Name/Email registration fields from the ShortCode (which is generation login details on the page) ?

2017-09-24_1652


Reply To: How to change topics layout?

0
0

Anyone know how to do this?

Reply To: Free BBPress Theme

0
0

You can use Css to hide it

How to change Page Numbers

0
0

Hi everybody!
Is it possible to change the number of pages in a topic? so i have a topic that have for example 200 posts. So i have Page 1 2 3… 10 11
I want to change this in 1 2 3 4 5 6 7 8 9 10 11
Here is my theme: https://www.mynghecaocap.vn/

Ho can i do that?

remove Titel on forum main page

Reply To: remove Titel on forum main page

0
0

You would have to use a conditional statement comparing against, if it is the forum archive. Depending on your theme and how bbPress has been implemented, the location of the title may vary. I am by no means an expert, but I can try my best to help out if you could provide more information.

<h1 class="entry-title main-title">
    <?php
    // Display title on all pages except forum archive
    if (!bbp_is_forum_archive()) {
        the_title();
    }
    ?>
</h1>
Viewing all 3558 articles
Browse latest View live




Latest Images