Forum Replies Created
-
In reply to: Allowing uploading of imagesIn reply to: Logout page redirect?
Try this:
http://pastebin.com/REwC3U9RIn reply to: Empty login submissions go to wp-login.php pageSorry, the code didn’t come up quite properly. Use this instead:
In reply to: Empty login submissions go to wp-login.php pageIn your functions.php file add this code
add_action('login_redirect', 'redirect_login', 10, 3);
function redirect_login($redirect_to, $url, $user) {
if($user->errors['empty_password']){
wp_redirect(get_bloginfo('url').'/log-in-error/');
}
else if($user->errors['empty_username']){
wp_redirect(get_bloginfo('url').'/log-in-error/');
}
else if($user->errors['invalid_username']){
wp_redirect(get_bloginfo('url').'/log-in-error/');
}
else if($user->errors['incorrect_password']){
wp_redirect(get_bloginfo('url').'/log-in-error/');
}
else{
wp_redirect(get_bloginfo('url').'/forums/');
}
exit;
}
I created a page in wordpress called “log in error”, and chose that as the page to be redirected to if you do an incorrect login. In that page I wrote “Your username or password was incorrect. Please try again.” And then I chose bbPress – User Log In as the Template.In reply to: User navigation?Hi myballard, this is the way I am doing it at the moment. If you look in your bbpress plugins folder, you can copy all the files from the ‘extras’ folder (found in bbp-theme-compat folder) into your own theme. Then in wordpress admin, add a new page and call it “Create New Topic” (or whatever you want to call it). Then in the “Template” dropdown, choose “bbPress – Create Topic”. You can do this for login, register, etc. Hope this helps.
- This reply was modified 12 years, 3 months ago by Tanya.
In reply to: Adding "view unread posts" pluginHi pimarts,
I wanted this particular functionality for my forum so I went out to find a viable option to get it done within a reasonable timeframe. To me it’s the same as hiring a developer for a website if you don’t have the skills yourself.
I understand that you might not want to pay for functionality. That’s fine with me, don’t buy it. I’m sure there are bbPress plugins out there that are pay-for. I don’t see anyone complaining about that.
I can’t speak on behalf of JJJ, but you can see what he says here: https://bbpress.org/forums/topic/unread-plugin-2/
In reply to: Changing "Post" count to "Replies" CountOk, so I went in my loop-single-topic.php and used bbp_forum_topic_count( true )
I hope that is correct – it is displaying properly here now: http://netballscoop.com/forums/
In reply to: Adding "view unread posts" pluginGood news everyone! I have been in contact with Pippin, and he says that he will definitely like to just build it and release it and that he is going to try and get it built sometime within the next month. Thank you for the suggestion Lesley Austin, and thanks to everyone for voicing their thoughts and getting this plugin up and running.
I am really excited about this and will be a nice finishing touch to my forum (even though it’s not finished yet!).
In reply to: How to get permanent link to last post?To my knowledge, this feature isn’t available at the moment. I am trying to round up fellow bbpress forum owners to contribute to a plugin made for this purpose. Please read more on this thread: https://bbpress.org/forums/topic/adding-view-unread-posts-plugin/
In reply to: Adding "view unread posts" pluginNo probs Starejosel, thanks for having a look into it.
In reply to: Adding "view unread posts" pluginStarejosel – Thanks for looking into it. From what I’ve seen of the website, it’s not running bbpress? Let me know if you find an answer though.
fripp – Thanks, let’s get a few more people on board to get this plugin up and running!
In reply to: Unread pluginAnyone who would like to chip in to this plugin, please visit this topic: https://bbpress.org/forums/topic/adding-view-unread-posts-plugin/
In reply to: Adding "view unread posts" pluginYes, that is certainly what I am aiming for with this plugin. Would you be willing to contribute to the cost? And any other forum owners out there who would like to chip in too?