Search Results for 'code'
-
Search Results
-
I have the latest versions of WP & bbPress.
Looking for short codes for “ACTIVITY” – “MEMBERS” – “GROUPS” to keep it private from the public. i.e., only those logged in will be able to view those three items on the home bar. http://www.PickensCountyTeaParty.com
Thanks!
Hello,
I recently installed bbpress, (this morning). I’ve gotten everything setup but I’m having a problem with the forum titles. Instead of one forum on one line titles seem to be wrapping to the next line beneath.
Is this something I can fix in CSS as in number of characters per title?
hockeyfights-video.com/forums/Thank you
Hi, my website is http://www.findgreatness.com and I am using Kopatheme circle, I have installed and setup a page with forums as the permalink and the bbpress short code, and added two forums to see how it looks. Although I can see some format with the forums if I add them additionally as a drop down menu, I cannot see the table format on the forum index page. Any help appreciated, thanks, Andy.
Hello all,
On my website i’m trying to use the wp-editor as editor for my bbpress forum (always latest stable version). I use the same code as I use for my WP comments section (to keep the appearances the same).
The code I use does show the tinymce, doesn’t “parse” the content though (with an “ERROR: Your reply cannot be empty” as result.
My guess is that I haven’t found the right parameters (***) in the wp_editor function. Help is much appreciated.
Regards.
Marc
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' ); function bbp_enable_visual_editor( $args ) { wp_editor( '****', '****', array( 'media_buttons' => true, // show insert/upload button(s) to users with permission 'textarea_rows' => '10', // re-size text area 'dfw' => false, // replace the default full screen with DFW (WordPress 3.4+) 'tinymce' => array( 'theme_advanced_buttons1' => 'bold,italic,underline,strikethrough,bullist,numlist,code,blockquote,link,unlink,outdent,indent,|,undo,redo,fullscreen', 'theme_advanced_buttons2' => '', // 2nd row, if needed 'theme_advanced_buttons3' => '', // 3rd row, if needed 'theme_advanced_buttons4' => '' // 4th row, if needed ), 'quicktags' => array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' ) ) ); }