Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,526 through 3,550 (of 64,515 total)
  • Author
    Search Results
  • #218116
    zklennerf
    Participant

    I used twenty twenty and only bbpress active and nothing appears. Neither in dashboard> tools> forums
    or
    dashboard> settings> forums

    #218114
    Robin W
    Moderator

    ok, just checking.

    If you have performed the tests above with just bbpress active and a default theme, then these should appear, I can only suggest that your site is somehow corrupt.

    do you get anything showing in

    dashboard>tools>forums
    or
    dashboard>settings>forums?

    #218113
    zklennerf
    Participant

    On the wordpress desktop, in the sidebar, where the pages, entries, settings tabs are, the forum, topics and replies tabs should show … these 3 do not appear and the forum option does not appear in the wordpress settings tab so i can’t change bbpress settings

    #218111
    zklennerf
    Participant

    Thanks for your answer. I changed the theme and deactivated all the plugins one by one, even leaving only bbpress active but still the tabs and settings did not appear. Will there be any other solution? Thanks,

    #218107
    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

    #218084
    zklennerf
    Participant

    I have bbpress installed but the forum, discussion and answers tab does not appear on the wordpress desktop.

    #218067
    theyuw
    Participant

    I have noticed that if you quote something online, it seems to get blocked from posting. Is there a setting in BBPress that can turn off this “Copyright” block or is it built into the plugin? Thanks in advance for the help.

    Mushi
    Participant

    Hi,

    I am trying to export a large bbpress forum to another wordpress domain using the import and export tools in the wordpress, but it is not working due to large data and server is not responding after few minutes.

    Is there any other way of exporting bbpress to another domain?

    Any help would be highly appreciated.

    Thank you.

    #218040
    essenzalunare
    Participant

    Hi,
    I have bbpress with elementor and I inserted forum link in main menu.
    When I open forum page I see a 100% width page without any margin between text and border.
    If I enter in a topic content in centred and all is ok.
    Is there a way to resolve the issue?
    If i try this following custom css main page is ok while topic page is resized.

    #bbpress-forums.bbpress-wrapper {
    max-width: 70% !important;
    margin-left: 150px
    }

    #218039
    Manuel Camargo
    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

Viewing 25 results - 3,526 through 3,550 (of 64,515 total)
Skip to toolbar