
CollabPress is a plugin for WordPress that transforms your WP setup into a project management platform. It is developed by Brad Williams (@williamsba) and comes with plenty of features at a price of free.
index.php
file in your P2 theme folder.</h2>
<?php endif; ?>
before the </div><!-- main-->
.single.php
file as well. You should see the following for non-logged in users.functions.php
file, paste the following:Call to undefined function mb_strlen()
. The reason for this error is because the plugin is using the mb_strlen
function that is not activated by default. unicode.php
in your text-editor. At line 18, replace the line:http://yourwebsite.com
with your website URL.wp-config.php
file.wp-config.php
file with a text editor and paste the following line:functions.php
file. Add the following code to the end of the file:add_theme_support( 'post-thumbnails' );
activates the "featured image" function. You should be able to see the "Set featured image" link on the right sidebar of the post editing page or when uploading any image.set_post_thumbnail_size( 150, 150, true );
determines the size of the thumbnail image. In this case, we have set it to be 150px wide by 150px tall. You can change it to suit your theme.index.php
(or whatever place that you want the thumbnail image to appear). Within the loop, insert the following code: