Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 8,651 through 8,675 (of 26,874 total)
  • Author
    Search Results
  • #153403

    I’ve gotten my bbpress forum set up on my site and I need to somehow add a link back to the main forum page. Once users click on a individual topic to comment there is no easy link to get back to the main forum.

    I figured I could somehow add a link into one of the .php templates but nothing I add to them seems to show up at all on site. If anyone can point me to the correct .php template to modify or if there is a simple setting to enable this I’d greatly appreciate it.

    I’m on wordpress version 4.0 and bbpress version 2.5.4
    Thanks,

    #153401

    In reply to: bbp_setup_current_user

    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #153400
    alipoor.ah
    Participant

    hi
    I am getting this error.

    [16-Oct-2014 11:17:02 UTC] PHP Notice: bbp_setup_current_user تمّ استدعائه بشكل غير صحيح. The current user is being initialized without using $wp->init(). المرجو مراجعة التنقيح في ووردبريس للمزيد من المعلومات. (هذه الرسالة تمّت إضافتها في النسخة 2.3.) in /home/turathal/public_html/wp-includes/functions.php on line 3370

    I am using
    Debug : True
    Wordpress : 4
    bbPress Version 2.5.4

    pleas help mee

    #153373
    tharsheblows
    Participant

    I can’t reproduce this on a clean install of WP 4.0 with bbPress 2.5.4 and Twenty Fourteen theme. What other plugins are you using? I’ve tried it both with Join My Multisite and this pluginhttps://wordpress.org/plugins/multisite-plugin-manager/ (tried them separately, I mean) and both work.

    Can you give any more details? Which theme are you using?

    #153372
    Robin W
    Moderator

    my plugin should allow you to only see the required forums

    https://wordpress.org/plugins/bbp-private-groups/

    #153365

    In reply to: "Reply" button

    Robin W
    Moderator

    If I have understood you correctly you want to change the reply form you’ll be looking at

    wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php which sets up the forum and on line 57 calls

    bbp_the_content
    

    this function is in

    wp-content/plugins/bbpress\includes\common\template.php

    line 1706

    you’d probably want to write a filter fro that function

    if you’re familiar with wordpress args parsing, bbpress does it in the same way

    apply_filter (‘xx’ , ‘bbp_before_get_the_content_parse_args’)

    and then write a function xx that adds you initial text to $args[‘before’] should do it

    Don’t; have time to write and test it at the mo, but come back if you need further help

    #153363
    Robin W
    Moderator

    yes my plugin

    https://wordpress.org/plugins/bbp-private-groups/

    lets you show that forums exist, but not content

    #153345

    Topic: Hiding closed subject

    in forum Plugins
    Julien sSerenity
    Participant

    Hi all,
    i would like to know if there’s a way to hide subject when they’re closed.
    Thx by advance for your answer and have a nice day

    PS : i’m using WordPress Version 4.0 and bbPress Version 2.5.4

    #153343

    Topic: Size font bbpress

    in forum Themes
    Ricsca2
    Participant

    I’m using the theme Hueman but I see the characters bbPress much smaller than those of defoult of the theme.
    Where can I enlarge the font bbPress?

    thanks

    #153322

    In reply to: error after submit

    meravjon
    Participant

    Sorry, I didn’t answer all questions. Here it is:
    Always done this?- no
    just started?-yes
    just installed bbpress? – installed about a month ago
    have you added anything – like plugins? – MailPoet Newsletters
    changed themes – no
    updated plugins- yes (WordPress SEO, Contact Form 7)
    updated wordpress? automatic
    what versions of bbpress – 2.5.4
    & wordpress – 4.0
    are you running, which theme? frontier

    and what is a ‘response’ – a reply to a topic? – yes

    #153315
    robertosalemi
    Participant

    Hi,
    i’m using Buddypress groups extras plugin for to add custom pages in section of group

    I have created manually three page for one group so the administrator can edit them.

    But I ask you:
    1) can I create this three pages as default for all present groups and future?
    2) can I associate a template to these pages?

    Thanks.

    #153310

    In reply to: error after submit

    Robin W
    Moderator

    Always done this?, just started?, just installed bbpress?, have you added anything – like plugins?, changed themes?, updated plugins?, updated wordpress? what versions of bbpress & wordpress are you running, which theme?

    and what is a ‘response’ – a reply to a topic?

    Come back with further info, and we’ll try to help 🙂

    #153309
    Themeover
    Participant

    Hi guys,

    I was battling with this issue too. I didn’t want to abandon the Yoast SEO plugin so this is the function I added to functions.php in my WordPress theme to fix the issue:

    // fix yoast seo plugin issue with user title
    function fix_not_found_title($title){
    if (is_bbpress()){
    if ($title == ‘Page Not Found – SiteNameHere’){
    return ‘Forum User: ‘.bbp_get_displayed_user_field( ‘display_name’ );
    } else {
    return $title;
    }
    } else {
    return $title;
    }
    }
    add_action( ‘wpseo_title’, ‘fix_not_found_title’ );

    It’s a bit of a hack but it works for now. I hope that helps!

    Cheers,

    Sebastian

    #153305
    patbell101
    Participant

    Thanks. I had been searching and talking on wordpress.org and been told bbPress but simply because of the key word ‘forum’ and not my real need for a single page bulleten board. My search continues…

    #153300
    Henitan
    Participant

    Hello People

    I’m tried to install bbpress on my website http://journeybyafricans.com but I keep getting an error message Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 92160 bytes I’m currently using WordPress 4.0 and the latest version of BBpress.

    Thanks

    #153290
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #153285
    patbell101
    Participant

    I want to have a single discussion page on my website. As far as I can see bbPress is for multiple forums and wordpress is for pages and blogs. Am I barking up the wrong tree trying to mix them?

    #153274
    millerguide
    Participant

    Robin W., after reading that, I think I should explain my problem better. I do not want to change my entire WordPress site’s language. I really just want the ability to customize the text on bbpress, such as “Create New Topic”. I want the text to be both in Chinese and in English. Is there a way to manually do that? Thank you.

    #153273
    xprt007
    Participant

    Hi

    If you mean “3. Creating a forum page”, method 2, I tried that & was able to create this forum using the shortcode => [bbp-forum-index].

    On the Forum settings page & “/wp-admin/post-new.php?post_type=forum” page, it seems this only deals with the forum supposed according to the bbpress default settings to appear at /forums, but consistently wont.

    Does it mean all the forums & subforums have to be created using shortcodes (if so, any link where to find them?).

    This problem is not being experienced on another site sharing the same web hosting account, and has a separate domain. In the root of this particular, problematic site is some web directory. I wonder whether its moved the site to?

    I had a similar issue of consistent failure of accessing /recipes, generated by the recipepress reloaded plugin showing the recipe archive page, even with recommended default settings & permalinks, but just like the bbpress forum at /forums, it had the right url, but content of the site/blog front page. The plugin author, though said it was a bug in the plugin & changes in the code corrected the problem described here. Correct link now here.

    Could there be anything in this root folder .htaccess of the web directory (unrelated to WordPress), which may be causing this & affecting the functioning of bbpress (& not other plugins like Buddypress & co) or WordPress proper & in directory.com/wordpress & even in wordpress.directory.com? I ma not conversant with .htaccess & co. 😉

    So just wondering what to do next.

    Thank you for taking the time to look into this.

    Kind regards

    #153251
    Robin W
    Moderator

    you won’t be changing subscriber – that is a wordpress role – bbpress has it’s own roles, and probably that is participant.

    I’m sure you can , but haven’t tried so don’t have code offhand.

    Suggest you just create a new custom role, and then set your bbpress user to it.

    #153248
    Robin W
    Moderator

    I think you found a topic on an issue – since it didn’t fix it, suggest it is not relevant.

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #153237
    NLBlackEagle
    Participant

    Hello everyone,

    After searching about a hour I gave up and decided to create a topic.
    I hope that there’s a plugin somewhere in the corners of bbpress which suits the idea i have.

    I managed to block the creation of topics using the ‘bbPress Protected Forums’ plugin, however I can not find any plugins to block replies/comments on these topics.

    I would like to add this since I will be adding a ‘Read this first before you post!’ with the rules in it at every single subforum and I dont want any replies on those.

    Could anyone help me out with this?

    OS: CentOS 7
    Wordpress version: 4.0
    bbpress version: 2.5.4
    bbPress Protected Forums version: 1.0

    #153234
    Robin W
    Moderator

    Can it be installed on a club website for “members only” to view the whole bbPress section?
    • Can you set up different forums to be only accessed/viewable to certain members?

    https://wordpress.org/plugins/bbp-private-groups/

    • Can it host pictures?

    Usually people use

    https://wordpress.org/plugins/gd-bbpress-attachments/

    #153229
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #153227
    Robin W
    Moderator

    ok, than, I now understand.

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back and tell us where the issue is

Viewing 25 results - 8,651 through 8,675 (of 26,874 total)
Skip to toolbar