You are now logged out.
Forum Replies Created
-
With anything like this I recommend just playing with it. If you can setup a local installation of wordpress and bbPress then you can mess about as much as you like, you generally find out a lot of cool stuff doing that.
Or if your site is just a test at the moment, add it and see what happens!
Good luck.
You can create a page and then add the register shortcode to it: http://codex.bbpress.org/shortcodes/
Then link to it from anywhere you like, menu, page, any where.
Can you not hook into the classes provided to change the styling? Or are you looking for extra markup?
Have you try changing the permalinks, updating, changing them back and updating again, this fixes a few issues for me.
Otherwise it is usually a theme or plugin issue.
Good luck!
Do you have a link to your forum?
You would need to do a little custom work on switching out the freshness link inside your forum template files.
Inside loop-single-forum.php there is a function which gets all of the subforums. Inside that function is where the freshness link is. It might help to look at what I did with a starter theme for bbPress on github: https://github.com/EpicWebs/bbPress-starter-theme-epicwebs
Good luck!
Inside your wordpress do you have an extras folder? Then inside there, there is a page-front-forums.php you can edit this to try and achieve what you want.
Do you have any links we can look at?
There is the ‘bbp_new_reply’ action, this could work for you.
You could just create a topic and write your course/page out in the topic rather than a page. This way you can pick out the course/page with CSS and style it the same as a standard page, then underneath there would be the discussion forum.
Good luck!
I have started work on a plugin very similar (it would let you do this) but the problem I have encountered is not allowing the user to see the forum, I am sure there is something I am overlooking but if I find it, I will let you know.
In your template files you could check if the user is logged in and if they aren’t then redirect them to your login page.
You can find a list of shortcodes and other helpful stuff in the documentation link above.
The only thing to remember is that you can register for wordpress and register for bbPress (bbPress creates a wordpress user). So potentially they could be registering in a different part of your site, which could potentially mean you don’t get an email.
You can usually tell by their email address and username if it’s some kind of bot or something registering for wordpress sites, I just tend to delete them. If I am really unsure I just send them an email from a random email account asking if they recieved their password correctly, don’t recieve an email for two days then I just delete it.
Just to let you know I have no updated the original link but I don’t think it has the changes you made. Good thing to know for anyone using Github, always sync before you make any changes that is what got me stuck.
I meant to say I HAVE updated the original link.
Great!
If you add position: relative; to your .footer-block it pulls the login button back inside it, all of your submit buttons appear to be positioned absolutely.
Inside the bbPress plugin is a folder called: \wp-content\plugins\bbpress\templates\default – if you add this into your current theme then you can edit this file to customize it.
Are they all the same username?
Potentially you could look at doing something with htaccess to redirect /blog/forums to /forums but I am not sure if that is going to cause any issues anywhere else.
Not sure of another way because bbPress sits inside wordpress as a plugin.
Just to let you know I have no updated the original link but I don’t think it has the changes you made. Good thing to know for anyone using Github, always sync before you make any changes that is what got me stuck.
Aww man git is doing my head in lol.
I currently have windows.github.com but it won’t let me commit anything because of conflicts, then it redirects me to the command line tool. I can probably just make a local backup, delete my repo, resync it and then add the new files back in so it allows me to commit (hopefully).
If not then I will do some reading up on github I guess.
I am using: Windows, Wamp, Notepad++
Thanks a lot for all the help netweb, I will be trying to sort this mess out over the next couple of days!
That’s going to need quite a bit of custom work, unless someone knows of a plugin you can use.
You will need to somehow map the user to their forum and then in their custom login page pull all the topics based on that users forum id. I can see how it could be done.
When the customer registers you could create the forum, update the user_meta with that forum id and then have a custom view which fetches the customers user_meta forum id and then displays all of the topics based off that forum id.
http://codex.wordpress.org/Function_Reference/add_user_meta
Good luck!
When I visit the site style.css and navigation.css are not found.