Search Results for 'register'
-
Search Results
-
Topic: Private Forum
I am sorry if this has already been posted, but I seem to not be able to find the exact answer to my question.
Question: I want to make my bbPress forum completely private so that no one can see the post of anything like that UNLESS that register AND I also want it so that I have to approve a user before they can view and use the forum. So that everything displayed on the forum if completely private.
Answer: I have the answer to the first question (http://bbpress.org/plugins/topic/34?replies=1) but I need the answer to the second and I want to make sure that is will work with making the forum complete private (the first question).
Thank you.
Topic: Rate / Vote replies
Topic: limited functions
hello everyone
the bbpress is great and simple i love it thanks for developing it.
i installed and it works well.
i wanted to have an option in admin like i create 3 or 4 user as moderator or administrators and only those peoples have rights to answer the forum questions all other new users can register just to ask questions but they cannot post the answers.
is it possible any how ?
sorry for my english
Deva
Hi,
I installed bbpress and adapted the design, but now, when a users attempts to register or login, appaers a blank page or apparently does nothing.
When I reload the bbpress page (for example, http://www.mydomain.com/bbpress) the user appaers login it.
How can I do resolve the problem with blank pages? Thank you,
Topic: How do you add moderators?
Sorry to be asking so many questions, but I’m having trouble finding answers to these basic questions and I figure it’s easiest to ask them one at a time. Also, I think I was seduced a little by how easy it was to get WordPress going. bbPress seems a lot harder. Anyway:
How do you add moderators? In the admin page, I can see who they are, but can’t add anybody.
Do I have to get the people that I am inviting as moderators to register themselves, and then I can go and change their privileges? Or can I somehow add them on my own (which is what I’d like).
Thanks!
Hi .
I am not sure whether any plugin is available for this .
I have integrated wordpress and BBpress and in my wordpress blog i want to have a page which should show the lastest users who have registered in my forum along with their avatar if available. Is it possible .
More or less like we have contact me plugin for wordpress , is there any plugin to display the users ..
Thanks and regards
blog : http://www.tecfre.com
forum ( under testing) : http://www.tecfre.com/forum
Topic: Views plugin help needed
I am working on a “Topic Views Count” plugin, and I’m just about finished with it. You can see a working version of it here: http://blog.wittmania.com/bbpress/, and see the source code as it is right now here: http://blog.wittmania.com/files/bb-topic-views.txt
The only thing holding me up is this; I can’t figure out a way to keep the views count from including page views. For example, when page one of a topic loads, the view count will go up by one. But, when page two loads it will also go up by one. So, a visitor has only viewed the topic once (albeit they’ve viewed more than one page), but the counter has registered two views).
I know this isn’t a huge deal, and a counter that over-counts is better than no counter at all. Still, I was wondering if anyone would have any ideas. I’d like to avoid using cookies, if possible, because I have no experience with them at all to even know where to start.
Any ideas? I’m also open to any other ideas or suggestions for the rest of the code.
Thanks!
I have installed wpPHPmailer plugin with WordPress so that I can use an external SMTP server with password protection. The the same time I have integrated bbPress. But when a user registers, there is this message:
“Great! Your registration as was successful. Within a few minutes you should receive an email with your password.” .
But then there is a message on the top:
“Warning: mail() [function.mail]: Failed to connect to mailserver at “localhost” port 25, verify your “SMTP” and “smtp_port” setting in php.ini or use ini_set() in C:Program FilesApache GroupApache2htdocsmydomainforumsbb-includesregistration-functions.php on line 105″
Cannot I use wpPHPmailer with bbPress. Alternatively, how can I use the native sendmail or whatever functionality comes with bbPress.
Topic: Hooks & Filters Docu
Rather than just keeping private notes on the hooks and filters I found, I thought it best to maybe start a list here with everyone, just as a rough working documentation of the hooks and filters.
For future ref/for people that don’t know, a hook is a means of bbPress making your plugin run every time a certain thing happens. To get that to work, put this code at the very bottom of your plugin:
add_action( 'hook_name', 'functionname' );
Filters are very similar to hooks, only it gives your plugin some data, you can then do something with the data (filter it), and then pass it back. To register for filters, put this code at the bottom of your application; remember to accept the parameters in your function and return them as appropriate.
add_filter( 'filter_name', 'functionname' );
Note that in both cases you want the name as a string and the function’s name as a string, no brackets or parameters at the end of it! An optional third parameter is the priority of your function; default is 10, so set this higher if you want it to execute last or lower if you want it to execute earlier.
Some Filters
topic_title
– this passes the topic title to your function when the threads are being listed, like on the (default) front page.bb_allowed_tags
– this is the array of HTML tags you can use in your posts. Hang a filter on this and add elements to the array if you want to allow more tags.Some Hooks
bb_head
– this is called when the HTML<head>
element is being filled, so you can add stylesheets or javascript and the like.bb_user_logout
obviously gets called when someone logs out.bb_init
when someone logs in?bb_new_user
when someone registers; passes the ID along I thinkbb_profile_menu
– haven’t figured out how it works; I think it’s to do with the tabs at the top of the profile.If you know any more hooks or filters, or find ’em, please post them here with a quick description if necessary!
Hi,
Was wondering if there is a way to enable registered users to vote(or rate) other users comments & replies.
Thanks
Deepak