Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 14,651 through 14,675 (of 32,503 total)
  • Author
    Search Results
  • nirzol
    Participant

    I re up this topic because the problem still here.
    If someone get a solution without modify the core ?

    Thx a lot

    #126399
    golfer300
    Participant

    Is it possible to change the required information in the bbPress short code for registration.
    Also, is it possible to make the registration for my site and the forum one and the same.
    Any help is much appreciated.

    #126398
    Kevin M. Schafer
    Participant

    UPDATE

    I found a snippet of code that suppresses the “capabilities.php” warning of line 453.

    I pasted the code into the wp-config file, just above the line that reads “/* That’s all, stop editing! Happy blogging */”

    I don’t know if this is harmful or not, but my research suggests that this issue with capabilities is only a warning, and that the host server may be set a little too sensitive for php error reporting. If I’m going about this all wrong, please, someone tell me so that I can go at this from a better angle. In the mean time, at least I can continue building and configuring my site without the warning presenting itself.

    Here’s the code that I added to the wp-config file:

    ini_set( 'display_errors', 'Off' );
    ini_set( 'error_reporting', E_NONE );
    #126386
    Pantheism
    Participant

    @ Zilveer,
    Thanks for this info. Very concise and direct. I am actually ok with the type of font (Trebuchet MS), but the coloring is bad for me.

    Can I change the font colors for just the BBpress forum under the bbpress.css? Or will I need to edit some code in the style.css?

    Thanks for the fast response.

    Love this community!

    #126381

    In reply to: SideBar Removal

    Pantheism
    Participant

    Ugg, tried a few CSS codes, but no luck so far. Have not done website design in about 15 years. LOL.

    I saw some info about editing the PHP files in BBpress to remove reference to the sidebar. Any idea what files I need to adjust to do it that way?

    #126378
    Pantheism
    Participant

    Can anyone advise me on the CSS I would use to remove the sidebars from my BBpress forum. It is pulling the sidebars from my theme, and I would like them removed.

    Here is my forum URL…
    http://pantheismnow.org/forums/

    I wuold also like to make the width 100% too. Any chance I can get that code too?

    Thanks everyone.

    #126372
    bruceleebee
    Participant

    Did you end up finding a solution to this? I’m trying to do the exact same thing.

    I have found a few threads from 4 or 5 years ago, and supposedly someone wrote a plugin for an old version of bbpress that can do this. But BBpress has gone through some serious changes (for the best) and now operates as a plugin for wordpress not a stand alone platform – so they no longer work.

    Does anyone know of a plugin/rewrite rules/functions.php code we can use to make this a reality?

    #126367

    In reply to: 404's for non-admins

    Debra
    Participant

    Just chiming in here for the record. My knowledge of code and plugins is novice at best and I’m afraid I will not be of any help.

    I received these 404 errors with a fresh install of bbPress a little over a week ago. My membership plugin, Digital Access Pass, kept tripping it up. The DAP support team did some testing and could not come up with a solution for me. They suggested I use the fix from https://bbpress.org/forums/topic/fix-404-issue-for-bbpress-2-2-x/ until something else could be figured out.

    #126362
    Stephen Edgar
    Keymaster

    Give the bbPress 2.3 Beta a shot, everything you mention is fixed except user passwords.

    bbPress 2.3 Beta 2

    The only outstanding issue is imported vBulletin users have to manually reset their password.

    After the import you have to run the ‘Repair Tools’ to recount the topics and replies otherwise they will not be visible in the front-end.

    https://codex.bbpress.org/repair-forums/

    #126317
    aberglas
    Participant

    I’m not saying there is anything wrong with the members plugin, I just have not needed it. Like you I prefer code as I need to support multiple sites. And looking in the actual DB tends to provide a more reliable view of what is really going on.

    The original post of this topic could do with some clarification though, and then put up as proper bbPress doc.

    Anthony

    #126316
    moonoi
    Participant

    @aberglas Thanks for clearing up about WP not storing caps directly on users. I must have misread that somewhere.

    Anyway, you say that you haven’t used the Members plugin. Personally I try to avoid using the UI for any configuration (prefer to modify things with code). But the Members plugin is invaluable, and it really should be part of core. – Along with that fix to allow saving multiple roles. 🙂

    Patrick

    It’s a bit more complicated than a filter toggle I believe.

    Check out https://codex.wordpress.org/Roles_and_Capabilities

    By default only Author roles and above have the ability to upload files, and that’s for security reasons so that’s probably a good thing.

    You can tweak your roles to change the ability to upload files, but at the moment it’s a little messy. Another issue is if you want to let all your users upload files.

    If you are just looking for images there is a bbPress attachment plugin in the .org repo that can handle that without having to mess with all the user stuff.

    #126302
    xmasons
    Participant

    So here’s my solution.

    1.) Create a page template.

    2.) Using the power of current_user_can(), we may utilize the bbPress’s user roles.

    3.) Insert the Topic Index shortcode with the do_shortcode() function inside the user role wrapper.

    #126296

    In reply to: Only Visual editor?

    Debra
    Participant

    I’m no expert, so take this for what it’s worth and research further …
    Here’s the code I found that seems to work. Have not fully tested. Would appreciate any feedback from someone with more experience.

    In form-reply.php
    Find bbp_the_content( array( ‘context’ => ‘reply’ … and change line to
    ` ‘reply’, ‘quicktags’ => false ) ); ?>`

    In form-topic.php
    Find bbp_the_content( array( ‘context’ => ‘topic’ … and change line to
    ` ‘topic’, ‘quicktags’ => false ) ); ?>`

    moonoi
    Participant

    I have a few questions that I was hoping one of the bbPress developers would be able to give me a quick hint about offhand.

    I’m getting results that leave me completely puzzled, as I try to hook into or directly modify the `bbp_get_caps_for_role()` function in `/core/capabilities.php`.

    The `bbp_get_caps_for_role` filter
    My purpose is to try and return an array with true on all caps for any role, because I need to find out why only the keymaster gets to upload images.

    My first attempt is just to use the `’bbp_get_caps_for_role’` filter provided by the function. This is where the mysterious stuff starts…

    I can add the filter, and when I check the `$wp_filters` global afterwards, I can verify that the filter has been added correctly. However it doesn’t fire. When I check the `$wp_filters` array inside the `bbp_get_caps_for_role()` function, just before the hook is applied, my filter has vanished. So somewhere there must be a function removing my filter. But where, and why!?

    Testing by returning the `$caps` array with all caps set to `true`
    So giving up on the filter for now, I simply try to hardcode the all-true `$caps` array directly into the `bbp_get_caps_for_role()` function and returns this, regardless of role. What then happens is even weirder. – Now my user can not even post a reply in the forum.

    How can setting all caps to true end up giving my user less rights in the forum?!

    Thanks in advance guys!

    For reference, here is the bottom part of my hacked `bbp_get_caps_for_role()` function:
    `

    ‘assign_topic_tags’ => true,
    );

    break;
    }

    $caps = array(

    // Keymasters only
    //’keep_gate’ => true,

    // Primary caps
    ‘spectate’ => true,
    ‘participate’ => true,
    ‘moderate’ => true,
    ‘throttle’ => true,
    ‘view_trash’ => true,

    // Forum caps
    ‘publish_forums’ => true,
    ‘edit_forums’ => true,
    ‘edit_others_forums’ => true,
    ‘delete_forums’ => true,
    ‘delete_others_forums’ => true,
    ‘read_private_forums’ => true,
    ‘read_hidden_forums’ => true,

    // Topic caps
    ‘publish_topics’ => true,
    ‘edit_topics’ => true,
    ‘edit_others_topics’ => true,
    ‘delete_topics’ => true,
    ‘delete_others_topics’ => true,
    ‘read_private_topics’ => true,

    // Reply caps
    ‘publish_replies’ => true,
    ‘edit_replies’ => true,
    ‘edit_others_replies’ => true,
    ‘delete_replies’ => true,
    ‘delete_others_replies’ => true,
    ‘read_private_replies’ => true,

    // Topic tag caps
    ‘manage_topic_tags’ => true,
    ‘edit_topic_tags’ => true,
    ‘delete_topic_tags’ => true,
    ‘assign_topic_tags’ => true
    );

    return $caps;
    //return apply_filters( ‘bbp_get_caps_for_role’, $caps, $role );
    }
    `

    #126283
    undyingearth
    Participant

    Ugh… the formatting went a bit crazy and deleted some of my response.

    Ignore the above. Basically, I wanted to say that I could achieve the effect I wanted by deleting some code from the core plugin, but I had problems when trying to do the same thing in my child theme functions.php.

    Here is the code I added to my functions.php

    http://pastebin.com/PNty9aPq

    It almost works – but it returns a freshness value that is wrong by several years (!)

    Any ideas?

    J.S.

    florianbottermann
    Participant

    I added a code line to functions.php. Now, the name of the commentator is linked. But the is only a forwarding to the blog entry, not to the bbPress profile page of the commentator…
    commentator name

    florianbottermann
    Participant

    Here comes the functions.php code:
    functions.php

    And here comes the bbPress code:
    bbPress

    florianbottermann
    Participant

    I’m working at a WordPress site in which I want to use the bbPress plugin. Now, I want to create a link between the normal WordPress comment function and bbPress. I just want to do one thing. Under my standard WordPress blog entries, the users of my site can post comments. The comments are listed under the respective blog article. Next to each comments there the picture of the user that creates the comment. Now I want to create a link between the picture of the commentator and his bbPress profile page. When someone presses the picture of the commentator, there should be a forwarding to the bbPress profile page of the commentator. Observer of my blog can get a few informations about the commentator by that. Unfortunately I’m not able to create the link.

    This is the code of my functions.php, that describes the comments setup of my normal WordPress commenting system:

    And this is the bbPress php code which creates the user avatar link to the profile page:

    Can somebody tell me the way how I have to modify the WordPress functions.php?

    Even now, many thanks for your Help!

    #126273
    kraigg
    Participant

    You could install the BuddyPress plugin, which has forums listed under groups. If you decide to go with this option, make sure to do a backup of your database first, just in case.

    Or you could customise your forum list page using bbPress shortcodes (https://codex.bbpress.org/shortcodes/). You would just need to get the IDs of the forums. Such as:

    Forums page
    ———–

    Main forums
    [bbp-single-forum id=32]
    [bbp-single-forum id=1]
    [bbp-single-forum id=5]

    Other forums
    [bbp-single-forum id=23]
    [bbp-single-forum id=12]
    [bbp-single-forum id=54]
    [bbp-single-forum id=3]
    [bbp-single-forum id=7]
    [bbp-single-forum id=8]

    #126268
    xmasons
    Participant

    I’m trying to create a page that includes only recent topics which would only be available to a forum role of Participant and a visibility of Private.

    Creating a new page and using the short code [bbp-topic-index] doesn’t work, as the Private page visibility is based on WordPress user roles and not bbPress.

    Is there a way to create an additional forum template that lists recent topics? This would not replace the main forum list view, but would be an additional page.

    moonoi
    Participant

    After upgrading to 2.2.4, only the “keymaster” role gets the normal fancy post editor with a choice between WYSIWYG view and source code view.

    Normal “participant” users only get the source code view (exactly like in this support forum). There’s the row of helper buttons to insert code, but you can’t switch to the WYSIWYG view.

    I checked that there are no JS errors. (This is usually what prevents the tabs for switching to show up).

    I figure it must have something to do with the capabilities of the forum roles, but I don’t know how I would be able to view or change these. I use the Members plugin to edit roles and caps for the rest of WP.

    #126265
    moonoi
    Participant

    Thanks Justin and John for all your amazing contributions to the community. I have a few questions/thoughts…

    Dynamic roles – how to edit their caps?
    The switch to “dynamic” roles in the most recent BBPress has left me completely puzzled. I’m still not sure what “dynamic” is supposed to mean?!

    I can’t seem to find anywhere to view and/or edit the caps of these new forum roles. I’d like to, for some reason only “keymaster” users get the wysiwyg post edit form, whereas “participant” can only see the source code pane (no, there are no js errors?!).

    Roles and capabilities in WP
    I have been using Justin’s Members plugin, which made roles and caps in WordPress work like I feel it should. In the same way as in Drupal core. Any number of roles can be assigned to a user. Caps are assigned to roles – never to one single user of course. One specific user will have the combined capabilities of the roles he/she has.

    Am I right that the only thing keeping us from just having a happy life together with Members plugin – assigning many roles to one user – is WP core’s User Edit screen that cuts everything else but one role away when you click save? If so, this should be easy to fix by just modifying this User Edit form. Right!?

    Thanks! 🙂

    #126251
    johni33
    Participant

    I use [ bbp-topic-index] embedded on the front page of http://www.cpsarc.com and it’s been reported that clicking on the navigation links (for page 2 etc) doesn’t direct to forum pages, they display news posts.

    However the same shortcode on the forum page, works as expected
    I can see the address generated for the link on the front page is cpsarc.com/?paged=2
    however on the forum page it’s cpsarc.com/?pageid=1555&paged=2 and pageid 1555 is the forum page.

    John

    #126244
Viewing 25 results - 14,651 through 14,675 (of 32,503 total)
Skip to toolbar