haddly (@haddly)

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 38 total)
  • In reply to: sub topics not showing

    @haddly

    Participant

    @robin-w
    The reason that it is dequeued is that it was built that way by the software company that built our theme. This, I assume, was so that the forum would look like the rest of our site.
    My issue, by adding the ($args) arguments (to that snippet of code) and by removing that one line of CSS has now resolved this issue completely.
    Thank you!

    In reply to: sub topics not showing

    @haddly

    Participant

    I have it dequeued in my functions.php file:
    wp_dequeue_style( 'bbp-default' );

    In reply to: sub topics not showing

    @haddly

    Participant

    @robin-w, @hydrogriff:
    Hi, for me, the CSS styling issue is definitely a theme problem. In my styles.css file I have additional CSS for the styling of BBpress forum.
    #bbpress-forums .bbp-forums-list li {font-size: 11px;}
    I simply removed this line (font-size) from my style sheet and the standard BBPress kicked in.

    In reply to: sub topics not showing

    @haddly

    Participant

    Hey. Sorry, I didn’t see the added arguments in brackets. That works! Well, basically it shows the forum sub topics in exactly the same way as simply removing that snippet completely.
    Thx!

    In reply to: sub topics not showing

    @haddly

    Participant

    hmmm, no that was just how I pasted it badly into this post. When I comment out the snippet the sub topics reappear and when I have it in, they do not. I thought I had found the problem to this ticket here

    In reply to: sub topics not showing

    @haddly

    Participant

    @robin-w
    Hi there. I have finally found why this is not displaying. It isn’t the plugins 1 or 2 above but a snippet of code I added to my functions.php file a long while back. I remember adding it because the subforum topics weren’t displaying correctly and were displaying in a horizontal fashion (I think).

    If I remove this piece of code, the subforum topics now appear. The CSS is a little funky and the text a little small, but I can fix this. Sorry for not thinking to check the added snippets to my functions.php sooner.

    function custom_bbp_sub_forum_list() {
    $args['separator'] = '';
    return $args;
    }
    add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );

    In reply to: sub topics not showing

    @haddly

    Participant

    @robin-w – hey:

    1. AsynCRONous bbPress Subscriptions
    2. Image Upload for BBPress
    3. topic subscribe
    In reply to: sub topics not showing

    @haddly

    Participant

    Hi there, I do not have BBpToolkit activated on my site.

    In reply to: sub topics not showing

    @haddly

    Participant

    Hoping it will be a part of their next update!

    In reply to: sub topics not showing

    @haddly

    Participant

    Hi, just to let you know, Version 2.6.3 has not solved the issue.

    In reply to: sub topics not showing

    @haddly

    Participant

    I would like to second what @hydrogriff said. After installing 2.6-beta-1 the sub-topics reappeared.

    In reply to: sub topics not showing

    @haddly

    Participant

    Hi, thx but this didn’t work either. I also tried deactivating and reactivating the plugin.

    In reply to: sub topics not showing

    @haddly

    Participant

    Hi, I have 2.6.2 installed. But what do you mean “go into the forum and click save”? I don’t have the option to save…
    I want to “Settings | Forum” and clicked save at the bottom, but this didn’t do anything.
    thx

    @haddly

    Participant

    Hey, any ideas on the last question?

    @haddly

    Participant

    Hi, thanks for the quick response.
    I also want to change the message in German.
    but i have two files:
    one is wp-content/plugins/bbpress/languages/bbpress-de_DE.po
    and one is wp-content/languages/plugins/bbpress-de_DE-formal.po

    I have tried adding a dir after bbpress in my theme i.e. mytheme/bbpress/languages/bbpress-de_DE.po
    and then changing the translation in this .po file, but this hasnt worked.
    Any ideas?

    @haddly

    Participant

    Ahh well. I jumped the gun there a little.
    Any future deleted users content though will be be reassigned to “deleted_user”.
    thank you for the help

    @haddly

    Participant

    thx. I think this is the way to go.
    Now that i have assigned myself this deleted users account content, can i reassign it without deleting my account?

    @haddly

    Participant

    advice here would be to do a dump of the wp_users.user_email before doing such a job, as there are no backsies……

    @haddly

    Participant

    so, with some help from a collegue, this is how to do it:

    update wp_users  
        set wp_users.user_email = "myemail@email.com"
        where
        wp_users.ID IN (
        select  
        wp_usermeta.user_id
        from wp_usermeta
        where (wp_usermeta.meta_key = "wp_capabilities") &&  (wp_usermeta.meta_value like 
        "%bbp_participant%")   
        )
        ;

    @haddly

    Participant

    For some reason, emails weren’t being sent out to subscribed users when a new forum post was posted. When i started using Asychronous they started working.
    I wrote to the plugin author as well (today), and he has advised to use an email queueing plugin (due to the fact it calls the wp_mail() function. And then use the queueing plugin to set a number less than 100 with an interval.
    I will try his advice, but unfortunately there are 2 plugins i found, both of which haven’t been updated in 3 years such as: https://wordpress.org/plugins/smtp-mailing-queue/

    @haddly

    Participant

    Hi, no need to reply to the last post, my administrator is happy will how it works.
    Thx

    In reply to: Email notification

    @haddly

    Participant

    Can I ask a second question:
    How does BBpress send emails. (need to tell my IT guy here at the company.)

    In reply to: Email notification

    @haddly

    Participant

    I should also mention that i installed yesterday:
    “Reply subscribed”
    and “topic subscribe”.
    I am hoping they will help.

    In reply to: Email notification

    @haddly

    Participant

    HI , thanks for the prompt and detailed reply.
    1. The email is noreply@ourdomain.com so this isnt the problem.
    2. I am subscribed personally to all forums. (also with a second email account)
    3. I receive other emails fine from our website.
    4. Most Important:
    I have 25 Plugins on my website. I have no problem deactivating one by one, but how do i do it so that i don’t potentially send out 25 test emails (because i will post something and see if i get an email) to all my forum users?

    @haddly

    Participant

    Hi there, sorry it has taken so long to reply to this.
    The code you gave me works but the email address overlaps with the text in the post.
    Any idea how to fix that?
    Thanks again

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