Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 22,801 through 22,825 (of 64,518 total)
  • Author
    Search Results
  • #140403
    leninid
    Participant

    Participants can’t edit their posts. Blog with bbpress+buddypress+rolescooper. Version of my plugin – 2.4.1. The message for Participant – you don’t have permission for editing this post. How I can repair this? (sorry for my English)

    #140401
    Stephen Edgar
    Keymaster

    Give this plugin a try

    bbPress Forum Redirect
    Allows you to override the default behaviour of bbPress forums, linking them to an external site. bbPress Forum Redirect requires no real configuration… it simply adds a metabox to the forum edit screen allowing you to specify an override URL.

    https://wordpress.org/plugins/bbpress-forum-redirect/

    #140398
    Lynqoid
    Participant

    Could you create a class then initalize it inside the bbPress code and use a getter to grab the values you need?

    #140397

    In reply to: Forum Size

    Lynqoid
    Participant

    Hi!

    You can achieve this with a relatively small amount of css:

    .bbpress #sidebar { display:none; }
    .bbpress #left-div { width: 100%; }

    You will need to create a new image for your background though as it is currently not long enough, then you can add a little more CSS for that too.

    Good luck!

    #140396
    Stephen Edgar
    Keymaster

    Arghhhhhh….. I still can’t reproduce this error using “Luminescence LiteVersion: 1.1.9”

    Do you have any custom templates in your themes folder?

    eg. \wp-content\themes\luminescence-lite\bbpress

    #140394
    Stephen Edgar
    Keymaster

    It does work fine with WordPress 3.8 🙂

    We should also update bbPress to also say “Compatible up to: 3.8” rather than the current 3.6.1 😉

    #140391
    nickprebezac
    Participant

    I’m having the same problem:
    bbpress 2.3.2
    WordPress 3.6.1.

    #140390
    csk
    Participant

    I’m on WP 3.8 with bbPress 2.5.1-5217. When I enable the Subscribe to topics feature in the options, it never sends e-mails for topics I’m subscribed to.

    Any idea where I can start trying to troubleshoot this?

    #140386
    Stephen Edgar
    Keymaster

    The classes are set by the following:

    <body class="topic bbpress single single-topic... <- bbp_is_single_topic
    <body class="forum-archive bbpress archive... <- bbp_is_forum_archive
    <body class="bbp-user-page single singular bbpress... <- bbp_is_single_user
    <body class="bbp-view bbpress... <- bbp_is_single_view

    Take a look at the source for any others here

    #140383
    Stephen Edgar
    Keymaster

    When I try and do it manually on the WP admin dashboard, it also forces me to make them a user on the blog, which I don’t want. I want them to only access the forum.

    bbPress users ARE WordPress users so as @ronthai points out just make the users WordPress role ‘Subscriber’ to which point you may as well just use the built in users panel in your WordPress admin.

    #140382
    J
    Participant

    Hi,

    It was lovely of Milan to add hooks to his bbPress Digest (see here: http://blog.milandinic.com/2013/12/15/bbpress-digest-2-1-customizing-emails/)

    But I think he does not have much free time for non-developers, which I can understand. I was wondering if anyone can helps with implementation?

    I just want to update the From and the Subject.

    Thanks

    #140381
    sixf00t4
    Participant

    it seems it was semi addressed – https://bbpress.org/forums/topic/subscribe-to-new-forum-topics/

    Subscriptions
    Forum participants can elect to subscribe to a topic. They will be notified when a new reply is posted and subscribed forum topics will appear on their forum profile.

    https://codex.bbpress.org/forum-settings/

    #140374
    LinDan94
    Participant

    Hi guys,
    is there any solution to have same nicks in WordPress and phpBB, which you want to import into bbPress? For example, when I do this with my forum nick ‘LinDan94’, it’ll be overwrited with ‘imported_LinDan94’, because the same user exists in WordPress. How can I link this 2 accounts together?

    Thanks in advance

    Remco Beugels
    Participant

    I want want to remove the permission that moderators can delete topics and posts from the trash. But how can I change the standard permissions from bbPress?

    I made this code but it doesn’t work because bbPress roles are separated from WordPress roles:

    function changePermissions() {
    	$role = get_role('moderater');
    	$role->remove_cap('delete_others_topics');
    	$role->remove_cap('delete_others_replies');
    }
    add_action('init', 'changePermissions');
    #140371
    David 9
    Participant

    Thanks for the reply. So in order to do this I would have to use BuddyPress along with bbPress?

    #140364
    Stephen Edgar
    Keymaster

    As it is used in many spots I would suggest you add the translation now.

    Most of these translations only happened in the past two days so I would expect you won’t have to wait long for the translations to be updated.

    Once you translate that string fill out this form https://he.wordpress.org/contact/

    More info is also here in Hebrew https://he.wordpress.org/translate-wordpress/

    #140360
    traderhotel
    Participant

    In the WordPress dashboard on the left side, there was the “Forum” tab which is gone now and I cannot set up anything for the bbpress plugin now.
    How can I fix this?

    #140358
    5ngua
    Participant

    Anyone is using wordpress seo by yoast and bbpress please confirm that this is not a bug and this is my mistake: http://wordpress.org/support/topic/page-number-does-not-work?replies=1 . I have been struggling with Yoast and he says this is not a bug of WordPress SEO.

    In short: please check to see if %%page%% in wordpress seo titles work for BBpress pages like topics and forums. For me, it does not work anymore.

    Thanks,

    #140355
    Stephen Edgar
    Keymaster

    You can I think… Add the translation “Topic Status” as I linked to above.

    Then at the bottom of that screen you can select ‘Export’, though the dropdowns to the right you want to select “only matching the filter” then to right select “Portable Object Message Catalog (.po)” and then click the ‘export’ link on the left, save this file as bbpress-he.po then select “Machine Object Message Catalog (.mo)” and click ‘export’ again and save this file as bbpress-he.mo and then using FTP upload both these files to /wp-content/languages/bbpress/ and you evertyhting should be perfect. 🙂

    https://codex.bbpress.org/bbpress-in-your-language/

    #140354
    ronthai
    Participant

    It might be in form-forum.php (bbpress/templates/default/bbpress)

    It has these lines, have not tried it and be sure to have a backup:

    <p>
    						<label for="bbp_forum_type"><?php _e( 'Forum Type:', 'bbpress' ); ?></label><br />
    						<?php bbp_form_forum_type_dropdown(); ?>
    					</p>
    
    					<?php do_action( 'bbp_theme_after_forum_form_type' ); ?>
    
    					<?php do_action( 'bbp_theme_before_forum_form_status' ); ?>
    
    					<p>
    						<label for="bbp_forum_status"><?php _e( 'Status:', 'bbpress' ); ?></label><br />
    						<?php bbp_form_forum_status_dropdown(); ?>
    					</p>
    #140352
    Stephen Edgar
    Keymaster

    It looks like “Topic Status” has not been translated yet 🙁

    Hebrew 91% Translated 943 Strings Translated 92 Strings untranslated

    https://translate.wordpress.org/projects/bbpress/dev/he/default?filters%5Bstatus%5D=untranslated&sort%5Bby%5D=priority&sort%5Bhow%5D=desc

    You could help by translating those 91 remaining strings and then fill out the form here and let them know “There are some strings for bbPress waiting to be validated”, once these are approved you can update your translations.

    צרו קשר

    Note: In the very near future any updated translations will arrive via WordPress’ automatic updates 🙂

    ozgurpolat
    Participant

    Hi I just checked the exact date I signed up with wpengine.com it is 24th November 2013. my theme has a button which says import dummy data and it imports dummy posts. But I did that before installing buddypress and bbpress. Dummy data has its own dates.

    But whatever the problem is with my installation, If I replace bbpress 2.5 with 2.3.2 the problem will be fixed.

    #140347
    Sloppy Buns
    Participant

    Ok i think I have found where the problem is, take a look at the Body Class snippets from different pages on bbpress, paying particular attention to the sections after the word bbpress in each snippet.

    The top two are from pages I am able to get sidebars to appear on and the bottom two I can not.

    In the top two notice after the word bbpress you see a description of the type of page it is “single single-topic” and “archive” respectively.

    In the bottom two this does not happen so my theme “Hueman” doesn’t know what sort of pages they are and therefore is unable to place the sidebars on these pages, now all I need to know is how to rectify this?

    <body class="topic bbpress single single-topic postid-976 logged-in admin-bar no-customize-support topbar-enabled full-width gecko">
    
    <body class="forum-archive bbpress archive post-type-archive post-type-archive-forum logged-in admin-bar no-customize-support topbar-enabled full-width gecko">
    
    <body class="bbp-user-page single singular bbpress logged-in admin-bar no-customize-support topbar-enabled full-width gecko">
    
    <body class="bbp-view bbpress logged-in admin-bar no-customize-support topbar-enabled full-width gecko">
    
    #140345
    Stephen Edgar
    Keymaster

    If you are talking about this plugin https://wordpress.org/plugins/bbpress-threaded-replies/ then you are probably correct as “threaded replies” are now build into bbPress.

    #140340
    gmacev
    Participant

    My wp theme is Luminescence Lite. Bbpress is default.

Viewing 25 results - 22,801 through 22,825 (of 64,518 total)
Skip to toolbar