Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,201 through 3,225 (of 64,430 total)
  • Author
    Search Results
  • #219404
    Robin W
    Moderator

    I’d suspect that your theme has had an update then.

    As this is a paid theme, I’d suggest you raise it with the theme authors first.

    If you want to check you can

    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

    #219396
    #219389
    Robin W
    Moderator

    As I say I don’t plan to change how the default works – you can change that for your site, and yes it does not apply retrospectively

    ‘I also wanted to ask if there is a way to update that field in forum topics when editing in admin.’
    yes just edit the topic.

    ‘leave a comment’ is part of the comment form, and that is disabled when topics for posts shows. You can add that back on dashboard>settings>discussion>bbPress Topics for Posts Strings>Link text

    #219388
    ritishsharma
    Participant

    Users/participants are unable to Edit their post after posting, Even though I already enabled ‘can edit the post in 30 minutes after posting’.
    But they are unable to Edit, it shows the message that they have no permission to edit this.

    Does anybody know how can I troubleshoot this?

    #219383

    In reply to: Automatic subscribtion

    Julia
    Participant

    You can customze two file form-reply.php and form-topic.php .

    bbress> templates > default > form-topic.php at line 170

    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> />
    ↓
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox"checked value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> />
    

    bbress> templates > default > form-reply.php at line 104

    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> />
    ↓
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox"checked value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> />
    

    Then the topic and reply are automatically subscribed simply.
    But the participant can uncheck the checkbox about subscription by himself.
    If you do not want participant uncheck the checkbox, you can delete checkbox by CSS.

    Put these customized files in your child theme’s folder-bbpress.

    #219365

    In reply to: Forum Not showing

    Robin W
    Moderator

    just given screenshots, impossible to help

    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

    #219361
    Robin W
    Moderator

    you’ll find the filter in

    bbpress 2.6.6\includes\replies\functions.php

    lines 473 and 768

    #219351
    davidmanch
    Participant

    Hi Guys, If someone is still having problems importing data due to looped ‘Converting anonymous topic authors’ AND if you don’t need anonymous topic authors at all then I found a solution (in my case: bbPress 2.6.6 importing from PHPbb)

    1) find this file: /wp-content/plugins/bbpress/includes/admin/classes/class-bbp-converter.php
    2) TAKE A BACKUP
    3) Replace the content of the file with this: https://pastebin.com/cRGQiLWs
    4) Save and enjoy.

    Please remember, this will ignore anonymous topic authors so only use this solution if you don’t need them.

    I hope I could help. David

    #219343

    In reply to: User Photo Gallery

    Julia
    Participant

    How about the GD bbPress Attachments plugin?

    GD-bbpress-attachment

    #219342

    In reply to: Automatic subscribtion

    Julia
    Participant

    How about this code?

    
    type="checkbox" ⇒ type="checkbox"checked
    

    You can customize the form-reply.php and form-topic.php .

    
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox"checked value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> />
    

    You can change the code simply and put both files in your child theme’s bbpress folder.

    #219333
    arryson
    Participant

    Thank you for your reply.

    Maybe it might be interesting to add this info and a link to the buddyboss on the bbPress documentation tab ?

    Thanks again.

    #219330
    Julia
    Participant

    ‘reply page’ means content-single-topic.php .

    
    <?php bbp_topic_subscription_link(); ?>
    

    includes> topics > template.php

    
    function bbp_topic_subscription_link( $args = array() ) {
    	echo bbp_get_topic_subscription_link( $args );
    }
    
    	/**
    	 * Get the topic subscription link
    	 *
    	 * A custom wrapper for bbp_get_user_subscribe_link()
    	 *
    	 * @since 2.5.0 bbPress (r5156)
    	 * @since 2.6.0 bbPress (r6308) Add 'redirect_to' support
    	 */
    	function bbp_get_topic_subscription_link( $args = array() ) {
    
    		// Defaults
    		$retval      = false;
    		$user_id     = bbp_get_current_user_id();
    		$redirect_to = bbp_is_subscriptions()
    			? bbp_get_subscriptions_permalink( $user_id )
    			: '';
    
    		// Parse the arguments
    		$r = bbp_parse_args( $args, array(
    			'user_id'     => $user_id,
    			'object_id'   => bbp_get_topic_id(),
    			'object_type' => 'post',
    			'before'      => '&nbsp;|&nbsp;',
    			'after'       => '',
    			'subscribe'   => esc_html__( 'Subscribe',   'bbpress' ),
    			'unsubscribe' => esc_html__( 'Unsubscribe', 'bbpress' ),
    			'redirect_to' => $redirect_to
    		), 'get_topic_subscribe_link' );
    
    		// Get the link
    		$retval = bbp_get_user_subscribe_link( $r );
    
    		// Filter & return
    		return apply_filters( 'bbp_get_topic_subscribe_link', $retval, $r, $args );
    	}
    
    #219316
    Robin W
    Moderator

    only stuff is in the documentation tab.

    buddyboss basically uses bbpress and buddypress so all the bbpress hooks are the same

    #219314
    arryson
    Participant

    I have looked- searched the forum and the web…

    Is there any Developer Documentation for bbPress ?

    What I have in mind is like what exists for buddyboss:

    Developers

    Thanks

    #219309
    Robin W
    Moderator

    @supermagicien – thanks so much for posting back, it is always good to get feedback and updates !

    Really glad you are now working on the latest bbpress 🙂

    #219307
    supermagicien
    Participant

    Good evening Robin,

    I come to give some (good) news.

    I recently cleaned up and removed a plugin that was out of date, so I was able to upgrade to the latest version of BBPRESS without any problems this time.

    One problem that was persisting was posts and new topics disappearing, then thanks to you I understood that they were awaiting moderation, but I was not satisfied, I did not want to do moderation and let people post, I followed the advice of this topic: https://bbpress.org/forums/topic/random-replies-being-marked-pending/

    and now everything seems to work. 👍

    #219302
    Robin W
    Moderator

    just found 5 mins to look at this

    so installed free sydney theme from wordpress
    downloaded and installed child theme from here
    https://athemes.com/download/sydney-child-theme/

    creates bbpress folder in child theme

    copied \bbpress 2.6.6\templates\default\bbpress\content-search.php to child theme bbpress folder

    all works fine.

    I can only suggest you try

    dashboard>settings>permalinks and just click ‘save’ – this resets the permalinks and often fixes 404 errors

    #219301
    Robin W
    Moderator

    bbpress has an ID not a class (you don’t need to know what this means!) , so try

    body#bbpress .memberoni_breadcrumbs {
    display: none;
    }
    #219300
    bobcrawford
    Participant

    Quick question regarding styling the pages made by bbpress. Inside the forum I’m using the bbpress breadcrumbs and they work wonderfully. My theme uses breadcrumbs, and I use them for the rest of my site, (non-forum pages)… but they don’t work properly within the forum. I have the option of disabling my theme’s breadcrumbs on a page by page basis, but it only disables them on the page I inserted the breadcrumbs in. I’m assuming this is because the rest of the forum pages are generated by bbpress.

    So basically, I want to disable my themes breadcrumbs on all forum pages and let bbpress handle breadcrumbs there. My theme’s developer shared this with me…

    “I think the easiest way to do this would be to hide the breadcrumbs on the required pages. I believe all bbpress pages have a body with the class “bbpress” so this should be doable with some simple CSS (you can add this to your child theme’s style.css file):

    body.bbpress .memberoni_breadcrumbs {
    display: none;
    }”

    But this doesn’t work for me. I’ve tried to inspect the page using chrome to see what I’m doing wrong, but can’t seem to figure it out.

    Any help would be appreciated!

    #219294
    Robin W
    Moderator

    so I reckon you have followed this thread

    Search not working

    yes ?

    If so it should work, but are you using free or pro version of the sydney theme?

    #219292

    I’m using Inline Image Upload for bbPress, even the Pro version. It really enables TinyMCE, if set so.

    Still TinyMCE was deactivated after updating to 5.7 because the Image Upload plugin was deactivated. This had happened before.

    Whooda thought… 😉

    #219291
    lucalemboure
    Participant

    Hello,

    I’m using sydney 1.6 and bbpress, and the search result is allways a 404.

    I tried to copy the content-search.php to childtheme/bbpress but it didn’t work.

    there is an other content-search.php in the root folder of sydney theme, but when i rename it, it’s still not working.

    Do you know how to solve this ?

    Best regards,
    Lucas

    #219290
    Robin W
    Moderator

    ok, I agree it is annoying, but bbpress just uses worldpress registration and login, and is not very clever with these elements.

    You are best to sort it using a plugin such as ‘theme my login’ to fix all these issues

    Theme My Login

    #219280
    Robin W
    Moderator

    dashboard>pages>all pages> and select the ‘activities’ page.

    From there select ‘page’ on right hand side

    scroll down and you should see ‘topics for posts’

    and a tickbox ‘use a bbpress forum topic for comments on this post’ – untick this.

    If you do not see that part, then click the 3 vertical dots and scroll to the bottom of that page, select preferences and then panels and then click the topics for posts

    Sorry this is wordpress not me making this hard

    #219271
    Robin W
    Moderator

    that ability is on bbpress

    so set the user to particpant, and then in the relevant forums, you will see the ability to set the user as a moderator for that forum on the right hand side in edit forum

Viewing 25 results - 3,201 through 3,225 (of 64,430 total)
Skip to toolbar