Forum Replies Created
-
In reply to: How to Set Email Sender Name for Notification
@Robin, thanks for the new update!
How about the BCC list in the receiver part (for more than one subscribers)?
Currently I’m using AsynCRONous bbPress Subscriptions plugin to get rid of BCC list, so that the subscription email would look like being sent to the receiver individually. But this plugin has no longer supported and most functions are not compatible anymore (except the BCC part still working well). Is it possible for bbp Style Pack to take over this task?
@houd, thanks for your help.
I tried your code but the ‘span’ tag does not work as expected.
Strangely, I think the code itself is correct because ‘strong’ tag (bold text) does work when I added it in the code for testing purpose. Like this:function wp_bbpress_allow_tags(){ return array( 'span'=> array( 'class' => true, 'style' => true, ), 'strong' => array(), ); } add_filter('bbp_kses_allowed_tags', 'wp_bbpress_allow_tags');
Don’t know what go wrong.
Hi all, I have done plugin conflicting test on my site but couldn’t find the cause of the issue. Can anyone help to solve it or guide me on this?
Regards.
In reply to: Forum summary with total postsHi @robin-w, your last roll of the dice does the tricks. Appreciated very much for your help! 🙂
In reply to: Forum summary with total postsHi Robin, updated your plugin. Yes, it does solve the 2nd issue. But the overlapping problem still persists. Please refer my live link to better understanding the issue. Thanks.
In reply to: Forum summary with total postsYes. Here is the link to my site. It is still under construction.
In reply to: Forum summary with total postsThanks again. Can you look into the second issue as well?
The bullet point (*) is wrongly used in title “Forum” & “Posts”. I just feel that title should not apply bullet point.
Regards.
In reply to: Forum summary with total postsThanks @robin-w. A quick check found that the issue is still there after updating Bbp Style Pack.
If I put Forums List widget in the 1st position, e.g.,
Forums List widget
Recent Topics widget
Recent Replies widgetFrontend result:
Forums List widget overlaps with the restsIf I move Forums List widget down to 2nd position, e.g.,
Recent Topics widget
Forums List widget
Recent Replies widgetFrontend result:
Recent Topics widget stays in the 1st position with no issue
Forums List widget does move to the 2nd position but now overlaps with Recent Replies widgetRegards.
In reply to: Forum summary with total postsI deleted all other widgets, and started with this Forum List widget first, followed by others. Overlapping issue persists. One thing to note is that all other widgets have not caused this problem, including those from Bbp Style Pack. This make me think that the issue is not from the theme itself (probably something missing within the codes?)
In reply to: Forum summary with total postsI cleared the cache but no luck. I tested with iPad (safari & chrome) even with desktop, all appears overlapping. But other widgets (from Bbp Style Pack) like recent topics & recent reply has no overlapping issues.
In reply to: Forum summary with total postsThanks for your effort @robin-w.
I want to highlight two issues with this widget:
1) If I position it as the first widget in the sidebar, it overlaps with other widgets which supposed to move down and give way to this widget;
2) The bullet point (*) is wrongly used in title “Forum” & “Posts”. I just feel that title should not apply bullet point.
* Forum * Posts * Development & Updates * 93 * Installation * 28,139 * Troubleshooting * 61,540 * Themes * 10,285 * Plugins * 15,193 * Requests & Feedback * 14,798 * Showcase * 3,252
Other than these two, the widget looks great! 🙂
In reply to: Forum summary with total postsHi @robin-w, do you have any idea about where to get this widget?
In reply to: Forum summary with total postsHi, sorry for the confusion. I don’t know why I can’t post a screenshot link in this forum. Never mind, I just typed it out. Below is the widget I mean:
Forum Posts Development & Updates 93 Installation 28,139 Troubleshooting 61,540 Themes 10,285 Plugins 15,193 Requests & Feedback 14,798 Showcase 3,252
Regards.
In reply to: Forum summary with total postsThanks for your reply!
I only found three widgets in your plugin, ie, Latest Activity, Single Forum Information & Single Topic Information. But they are not the widget I’m looking for. The widget I mean should look like the one used in bbPress support forum (located top left).
Regards.
Does anyone have the solution (or workaround) in my case?
In reply to: Forum post font color change optionTry to enable tinymce full editor and you will see the button. Check out this documentation.
In reply to: Can you make a role to subscribe a forum?Thanks @robin-w, it works beautifully!
For anyone who want to execute the code 2nd time (or more), reset the ‘rew_done’ option by running
update_option('rew_done', '');
before activating the code again.Regards.
In reply to: Can you make a role to subscribe a forum?Hi, just want to know how can we make the codes below role-specific? e.g. auto-subscribe moderator to forum with ID 3.
$list = get_users(); if (empty (get_option ('rew_done'))) { foreach ($list as $user) { $user_id = $user->ID ; $forum_id = 3 ; bbp_add_user_forum_subscription( $user_id, $forum_id ) ; } update_option ('rew_done' , 'done' ) ; }
Regards.
In reply to: No “Move Topic” option in bbpress admin?Hi, u can actually move any topic to another forum at frontend by clicking admin link “edit”.
In reply to: Restrict specific forum by role?Hi, I also want to know how do I make use of this filter
bbp_current_user_can_access_create_topic_form
to make one of my forum solely for admin posting only? Appreciated if @scottmotion can share your solutions with us.Regards.
In reply to: Moderator can only trash his own postsLegend! It works exactly like what I want.
Thanks a lot!
In reply to: Moderator can only trash his own postsToday tried testing this very ‘rough’ piece of code, failed hopelessly with my very limited knowledge of coding:
add_filter('bbp_topic_admin_links', 'rew_no_trash_except_own', 10, 2); add_filter('bbp_reply_admin_links', 'rew_no_trash_except_own', 10, 2); function rew_no_trash_except_own ($links, $topic_id) { if (!bbp_is_user_keymaster() && !bbp_is_topic_author(get_current_user_id(), $topic_id)) { unset($links['trash']); } return $links; }
I think the direction is somewhat correct. Hope to get expert guide on this issue.
Regards.
In reply to: Change subscription textThank you so much @robin-w!
In reply to: Moderator can only open topicSimple codes do the tricks. Thanks for your kind support!
In reply to: Moderator can only open topicThanks for replying me on yr holiday. 🙂
I applied yr given code with minor correction of syntax error:
unset($r['close']) ;
The code however return generic critical error message in the webpage. Anything wrong?
Regards