Coronoro
Forum Replies Created
-
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Unread posts icon for hidden forums always showingI will make some test when I have some freetime – might take a while though.
Forum: Plugins
In reply to: [bbPress Unread Posts v2] SuggestionsAs the Plugin is now it is not possible to change the icon for sticky topics. I might add this is in a future patch as it dont seem too divicult.
However as I am currently pretty occupied with some other projects Icant tell you when this will be.Forum: Plugins
In reply to: [bbPress Unread Posts v2] SuggestionsHello,
BBpress WordPress plugin already has a sticky post/thread functionality so I’m not sure what you are looking for?
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Possible to change indicator image?Yes there is.
In the WordPress Admin Menu under Setting->Unread Posts you can set an URL for read / unread postsForum: Plugins
In reply to: [bbPress Unread Posts v2] Update?Hey,
There were no update of a requested functionallity, I just wanted to update the readme file and tried something out. The next real update will most likely contain a shortcode as I am having the most progress with that as of now.
I am still searching for a good solution regarding your request where the number of unread posts in a post is shown.Forum: Plugins
In reply to: [bbPress Unread Posts v2] Mark all as read for all usersHey there,
Right now there is no such function implemented. If you want to remove the information whether a post is read or not you would need to manipulate the metadata of all posts in your database.
Forum: Plugins
In reply to: [bbPress Unread Posts v2] HOME RUN!Hello,
I am glad to hear you are satisfied with the plugin,
For your requests:
1: I would need to do some customisation to the Plugin and as also some people had trouble with custom templates im currently searching for ways to get things smooth.
2: This is quite tricky as I would need to fill the database with lots of information which also makes the query a tad more complex. None the less I think its definitly possible.
3: I am currently working on a shortcode for the plugin which would also include features as showing how many posts are unread and which.
4: I think i will put up a but a donation button in the future ~ coding comes first xD
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Can you help me with a template?Ah I think i got it fixed :
<?php while ( bbp_forums() ) : bbp_the_forum(); ?> <?php do_action( 'bbp_theme_before_topic_title' ); ?> <?php do_action( 'bbp_theme_after_topic_meta' ); ?> <table class="bbp-forums">
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Feedback and a suggestionHello,
First of all I want to thank you for your feedback! It’s good to hear that many people have use for this small piece of software.
As for your suggestion, I also thought about a mark as unread button but came to the conclusion that in my case it was more or less a way of marking certain posts (besides it needs to be a bit more post specific then). However given the fact that you seem to want such a feature I will reconsider it.
The CSS for customizing the button would be
form.bbpress_mark_all_read input{ /*your width and so on */ }
I think a Widget which you described it is a realy good usecase! Maybe when I got some freetime next month I will try myself in something similiar.
Forum: Plugins
In reply to: [bbPress Unread Posts v2] no more Mark All Read buttonI have checked on my local forum and a friends still everything looked just fine.
Maybe you have a custom template? the Button requieres a bbp_get_breadcrumb hook.
I’ll try to get this working.
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Missing actionHey,
you are facing a similiar issue as described hereyou need some loop and add
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
inside of it
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Can you help me with a template?Hey I think the problem is that you are not calling the hook the plugin needs.
It should work if you do it this way:
<?php while ( bbp_forums() ) : bbp_the_forum(); ?> <!--added--> <?php do_action( 'bbp_theme_before_topic_title' ); ?> <table class="bbp-forums">
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Feature Request w/compensationI will work on this request tomorow as I think it will be easily done. However please note that it can be somewhat critical in terms of performance
Forum: Plugins
In reply to: [bbPress Unread Posts v2] Feature Request w/compensationHey There,
Sorry for the long wait however I am now fully recovered to start developing again. If there is any feature you’d like to see then please post it here.Here I will definitly be more active again.