How to import data from Mingle Forum plugin to bbPress?
bbPress includes an importer to import Mingle Forums (WordPress Plugin) http://codex.bbpress.org/import-forums/
bbPress includes an importer to import Mingle Forums (WordPress Plugin) http://codex.bbpress.org/import-forums/
Connect WordPress comment moderation with bbPress Moderation plugin
You could do it yourself using the following plugin, though if you have 1,000’s it may be beneficial to use SQL queries. bbPress Topic to Post Converter (Here’s the specific code)
I managed to fix this by: <?php function the_breadcrumb() { global $post; $post_type = $post->post_type; echo ‘<ul id=”breadcrumbs”>’; if(get_post_type() == ‘forum’ OR get_post_type() == ‘topic’ OR get_post_type() == ‘reply’) { echo ‘<li><a href=”‘; echo get_option(‘home’); echo ‘”>’; echo ‘<i class=”ts-awesome-home” style=”font-size:14px;letter-spacing: 2px;”></i> Home’; echo ‘</a></li><li class=”separator”> / </li>’; echo ‘<a href=”https://link”>Forum</a>’; echo ‘ / ‘; … Read more
Custom Post Types and Posts are mixed
SOLVED! I just put anther add_action to insert the javascript in the rest of the theme (and for bbpress too): add_action( ‘wp_print_footer_scripts’, ‘generico_quicktags’ ); The quicktags check in function already prevents wordpress to put the javascript in unwanted places!
Normally not (it depends on what part of the plugins code you want to use and how the plugin initializes itself in the context in which you want to do it), the main plugin files are loaded as part of the wordpress boot process and the convention is that they will load the other files … Read more
As a temporary (but poor fix) the below code can be added to “functions.php”. //Remove nofollow function rm_nofollow($txt){ $txt=str_replace(‘ rel=”nofollow”‘,”,$txt); return $txt; } add_filter(‘bbp_get_topic_content’,’rm_nofollow’,20); add_filter(‘bbp_get_reply_content’,’rm_nofollow’,20);
In the similar scenario, I had used Capability Manager Enhanced to customize capabilities. It will allow you to change capabilities of any role without diving into codes. Please take a look.
How to detect if bbPress forum index