Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,451 through 3,475 (of 64,431 total)
  • Author
    Search Results
  • #218039
    SirLouen
    Participant

    Hey @robin-w Tested but not working 🙁
    What can be failing in your idea?

    This doesn’t work either 🙁

    Remove NoFollow from BBPress Posts

    Will have to review the code and what’s going on with that filter nowadays

    #218038
    emanibr
    Participant

    I’m using the official translations posted in the bbpress translations. It’s %100 complete. Yes, it’s bbpress related. I used the theme editor to edit some of them, but still the translations aren’t reflected completely.

    #218035
    hanskap
    Participant

    Hello Support,

    I was curious how works with the new 5.6 version.

    Hope to hear.

    Regards Hans

    anhduc.bkhn
    Participant

    My env:

    WooCommerce version: 4.9.0
    WordPress version: 5.6
    PHP version: 7.4.14
    MySQL version: 5.7.31
    
    Plugin:
    bbp style pack: 4.7.2
    bbPress: 2.6.6
    Easy WP SMTP: 1.4.4

    The feature “Notify me of follow-up replies via email” does not work on my site.
    I tested: go to Settings->bbp-style-pack->Subscriptions Emails -> 9. Send test email, click on ‘Send test email(s)’, but it still does not work.

    Pls guide me on this.

    purityboy83
    Participant

    @neon67

    HI @neon67
    I want to implement lightbox in bbpress like you do.

    beside creating the function below, what else should I do?
    Please share me installed plugins and other information

    ###############################################################
    function add_image_responsive_class($content) {
    global $post;
    $pattern =”/<img(.*?)class=\”(.*?)\”(.*?)>/i”;
    $replacement = ‘‘;
    $content = preg_replace($pattern, $replacement, $content);
    return $content;
    }
    add_filter (‘bbp_get_reply_content’, ‘add_image_responsive_class’);
    add_filter (‘bbp_get_topic_content’, ‘add_image_responsive_class’);

    ################################################

    Best Regards,
    Hyunho

    #218000
    chieleijt
    Participant

    Found it. Download the plugin: bbpress do shortcodes

    #217993
    BobHatcher
    Participant

    I run a membership site with bbpress and we have members leave so I need to change the author of their posts. Can anyone recommend a plugin that can help me do that?

    Thanks

    #217991

    Topic: Forum Restrictions

    in forum Plugins
    deanljbirch
    Participant

    I’m in the middle of a project that will embed bbpress.

    I’ll have to create a forum for “Website updates, company updates etc” however, other members/site users should be able to reply to a topic in that specific forum but not create new topics.

    Best plugin for this?

    #217990
    Robin W
    Moderator

    you are using the widget from the bbpresstweaks plugin, I cannot say why this is not working.

    Try the one from bbpress.

    #217980
    Julia
    Participant

    I could get the code to set on the thumbnails in the topic index page using GD bbPress Attachments.

    
    function action_bbp_topic_row_actions() { 
    
        $medias = get_attached_media( 'image', bbp_get_topic_id() );
        
        foreach($medias as $media){
        the_attachment_link( $media->ID,false );
        }
    } 
    add_action( 'bbp_theme_before_topic_title', 'action_bbp_topic_row_actions', 10, 0 ); 
    
    #217978
    Robin W
    Moderator

    that section does not look like bbpress showing it.

    I would need to see it on the real site to guess what it is showing

    #217973
    Julia
    Participant

    The bbress Support 7 years ago. Topic Thumbnails?

    
    add_action( 'bbp_theme_before_topic_title', 'assylumn_insert_thumbnail' );
    function assylumn_insert_thumbnail() {
    	echo('<a href="http://www.mysite.com/wp-content/uploads/2013/09/picture.jpg">') ; 
        echo('<img class="bbp-topic-thumbnail"  width="100%" style="max-width: ' . get_option('thumbnail_size_w') . 'px; max-height: ' . get_option('thumbnail_size_h'). 'px; vertical-align:middle;" src="http://www.mysite.com/wp-content/uploads/2013/09/picture.jpg"/>' .'</a>');
    	}
    

    I did not know how to get the url in each topic pictures using plugin, GD bbPress Attachments.
    Please show me other code to get the url in the topic pictures.

    #217966
    Mike Witt
    Participant

    @multitalentedmommy – Hi Cathy, what sort of MP rules are you using? Is that working for you?

    I’m also curious: What do you do with bbpress topic subscriptions for former members who have cancelled?

    There are actually a number of items that I’d like to compare notes on, involving the combination of MP and bbPress 🙂

    #217950
    Cathy Mitchell
    Participant

    I am using both memberpress and bbpress. I am using memberpress rules to restrict ‘one forum’ to a membership level.

    I was googling hooks and filters for the account tabs memberpress creates for the “Forum Profile” tab and can’t find much online either. 🙂

    #217947
    neon67
    Participant

    So, the final css looks like this (you must put “a”)

    #bbpress-forums .bbp-topic-freshness .dayfresh  a {
    background-color : #f4ffe8 ;
    	border: 1px dashed;
    	color: #475656;
    }

    also 86400 looks a lot – captures the 2nd day. Perhaps need to set 23 hours. But these are little things ))

    Thanks to Robin for the great code!))
    I think this is a useful find for those who visit the forum once a day and immediately see how many topics have been updated in the last day.
    Colored blocks are very noticeable – it’s better than straining and peering at the date numbers.

    #217944
    neon67
    Participant

    #bbp-topic-8191 > li.bbp-topic-freshness in code

    #bbpress-forums .bbp-topic-freshness a { in css

    this is a small box with a time stamp (see pic. above) white background now

    #217939
    neon67
    Participant

    The same place where you added the picture today.)))
    bbpress.org/forums/topic/create-a-link-image-for-last-post-in-forum/

    Namely # bbpress-forums .bbp-topic-freshness a

    #217923
    wpfan1000
    Participant

    Hi,

    I would like to add some html content at the top of the forums home page – the page at /forums.

    I have searched for this on the net, I have looked thru the hooks list at bbpress.org and cant find anything.

    I am sure this can be done and I am sorry if I did not find something obvious.

    Any help is appreciated. Thanks ahead of time.

    #217922
    Robin W
    Moderator

    in which case you would hook to

    $subject = apply_filters( 'bbp_subscription_mail_title', '[' . $blog_name . '] ' . $topic_title, $reply_id, $topic_id );

    in bbpress 2.6.6\includes\common\functions.php line 1124 and 1291

    #217894
    frenchlemans
    Participant

    Hello,

    Yes it will always be the same image.
    Members of my old phpBB forum that I am remaking on bbPress are familiar with this image that I want to reuse on my new bbPress forum.

    When the user clicks on the link it takes them to the last posted message, just as if they were clicking on the date and time.

    #217889

    In reply to: delete account

    ziseshiya
    Participant

    If it’s a theme problem, I think it maybe difficult to deal with it. So I can temporarily close the bbpress plug-in to remove users, which should have no impact, right?

    #217887

    In reply to: delete account

    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #217886

    In reply to: delete account

    ziseshiya
    Participant

    it is not working. I use the administrator account (b in picture),when I activate bbpress plugin, I can’t delete the account (j in picture). Please refer to the picture( https://imfonts.biglabgo.com/bbpress%20Activated.png )When I disable the bbpress plug-in, the administrator account (b) can delete the account (J), the situation is this( https://imfonts.biglabgo.com/bbpress%20Unactivated.png ).

    #217865
    Robin W
    Moderator

    Not quite sure what you question is.

    bbpress just uses wordpress registration and login, and your site permits automatic registration, so users can just sign up as long as they have a valid email address.

    #217864
    sudeepmadhavan
    Participant

    Hi, I contacted wordpress and understand that unwanted users are being automatically added to my site csmystics.com by bbpress. Can you stop doing that? It is annoying to see unwanted users automatically added and I have to keep deleting them.

Viewing 25 results - 3,451 through 3,475 (of 64,431 total)
Skip to toolbar