enkoes (@enkoes)

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 87 total)

  • enkoes
    Participant

    @enkoes

    @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?


    enkoes
    Participant

    @enkoes

    @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.


    enkoes
    Participant

    @enkoes

    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.


    enkoes
    Participant

    @enkoes

    Hi @robin-w, your last roll of the dice does the tricks. Appreciated very much for your help! 🙂


    enkoes
    Participant

    @enkoes

    Hi 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.


    enkoes
    Participant

    @enkoes

    Yes. Here is the link to my site. It is still under construction.


    enkoes
    Participant

    @enkoes

    Thanks 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.


    enkoes
    Participant

    @enkoes

    Thanks @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 widget

    Frontend result:
    Forums List widget overlaps with the rests

    If I move Forums List widget down to 2nd position, e.g.,
    Recent Topics widget
    Forums List widget
    Recent Replies widget

    Frontend 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 widget

    Regards.


    enkoes
    Participant

    @enkoes

    I 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?)


    enkoes
    Participant

    @enkoes

    I 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.


    enkoes
    Participant

    @enkoes

    Thanks 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! 🙂


    enkoes
    Participant

    @enkoes

    Hi @robin-w, do you have any idea about where to get this widget?


    enkoes
    Participant

    @enkoes

    Hi, 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.


    enkoes
    Participant

    @enkoes

    Thanks 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.


    enkoes
    Participant

    @enkoes

    Does anyone have the solution (or workaround) in my case?


    enkoes
    Participant

    @enkoes

    Try to enable tinymce full editor and you will see the button. Check out this documentation.


    enkoes
    Participant

    @enkoes

    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.


    enkoes
    Participant

    @enkoes

    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.


    enkoes
    Participant

    @enkoes

    Hi, u can actually move any topic to another forum at frontend by clicking admin link “edit”.


    enkoes
    Participant

    @enkoes

    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.


    enkoes
    Participant

    @enkoes

    Legend! It works exactly like what I want.

    Thanks a lot!


    enkoes
    Participant

    @enkoes

    Today 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.


    enkoes
    Participant

    @enkoes

    Thank you so much @robin-w!


    enkoes
    Participant

    @enkoes

    Simple codes do the tricks. Thanks for your kind support!


    enkoes
    Participant

    @enkoes

    Thanks 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

Viewing 25 replies - 1 through 25 (of 87 total)