Forum Replies Created
-
In reply to: Voting on user-submitted posts
I’ve updated the plugin to include a (very basic) paypal payment feature and the ability to mark topics as “accepted”. You have to manually update the topics when payments come in, I don’t have enough time to make any sort of PayPal IPN integration.
Code has been updated here: https://github.com/dtbaker/bbPress-Support-Forums ( warning, my paypal address is hard coded into includes/bbps-vote-functions.php )
Screenshots:
Main forum page, it sorts topics by “funds” then “accepted” then “votes”.
Admin topic page: you can vote, mark topic as accepted, and manually update payments.
User topic view, can vote (when logged in) and pay:
Live demo here: http://ultimateclientmanager.com/forums/forum/feature-requests/
In reply to: Working rating/vote up feature for bbpressIn reply to: Voting on user-submitted postsI added this new Voting feature as part of the old GetShopped Support Forum plugin.
It was the quickest way I could get a support forum (resolved/unresolved) plus topic voting working together.
Here is the comment I made on the WordPress plugin repo site:
https://wordpress.org/support/topic/i-added-bbpress-voting-and-fixed-some-bugs-version-303?replies=1Code is available on github. It’s not polished enough to be a standalone plugin just yet.
I have added a few new things:
1) topic voting
2) sidebar registration widget
3) copied the ‘resolved’ dropdown to near the submit button, so you can easily mark a topic as resolved while you are replying to it (much quicker!)
4) fixed a couple of potential bugs around permissions (ie: anyone could mark a thread resolved or assign a thread to someone etc..)You can grab the code (and see the changes) from here: https://github.com/dtbaker/bbPress-Support-Forums
The voting and sidebar registration features can be seen in the demo here: http://ultimateclientmanager.com/forums/forum/feature-requests/
(I have modified some of the div tags/classes in this plugin to better support bootstrap, so it might look a bit funky on the standard bbPress install)
Cheers,
DaveIn reply to: Voting on user-submitted postsI couldn’t find a working (simple) voting system for bbpress so I rolled my own:
If it continues to work over the coming weeks I’ll clean up the code and share it.
In reply to: Working rating/vote up feature for bbpressI couldn’t find a working (simple) voting system for bbpress so I rolled my own:
If it continues to work over the coming weeks I’ll clean up the code and share it.
In reply to: Adding "view unread posts" plugin@aaclayton – currently using this plugin: https://wordpress.org/plugins/bbpress-unread-posts/
yes this plugin does add a meta key to each post for tracking unread status. Do you know of a better plugin that does this in a more elegant fashion?
In reply to: Adding "view unread posts" pluginHere is my quick solution for displaying a list of unread posts.
Code: https://gist.github.com/dtbaker/5906404
Example: http://ultimateclientmanager.com/forums/unread-forum-posts/ (have to be logged in)
Discussion: http://stackoverflow.com/questions/17416593/wordpress-query-post-compare-between-postmeta-values-using-meta-query-argumentNever mind!
I turned off the “Force current permalinks:” option within “404 Redirected” settings and this solved the issue.
Seems it checks the URL for an identically matching permalink, since /edit/ isn’t a permalink to an existing page/post/topic/reply then it redirects to the next best match.
All sorted.