Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 27,801 through 27,825 (of 64,518 total)
  • Author
    Search Results
  • Hansaplastique
    Participant

    Never mind; figured it out (by coincidence).

    If anyone is interested, add the following code to your wordpress functions.php;

    function t4a_bbp_shortcodes( $content, $reply_id ) {
    	return codecolorer_highlight( $content );
    }
    add_filter('bbp_get_reply_content', 't4a_bbp_shortcodes', 10, 2);
    add_filter('bbp_get_topic_content', 't4a_bbp_shortcodes', 10, 2);
    #124808
    Ben
    Participant

    Have you found a solution to this problem?

    I’m having the same issue. I used the [bbp-topic-form] shortcode in my `bbpress.php` template file. If I enter with my super-admin account I can see the form and create topics. But if I enter under the default “Participant” role, it gives me the message “You cannot create new topics.” However, if I go to a specific forum, the topic form is displayed underneath, so it must be a shortcode problem.

    Right now I’m using `echo do_shortcode(“[bbp-topic-form]“);` to include the form in my template file. Is there a better way to do this?

    #124806
    Mantzer
    Participant

    Hey
    I have an author page that is different to the default bbpress user page.
    However I’d like to show the last forum topic a user started as well as their latest reply on that particular page. Is there a way to do this?
    Thanks a lot.

    Hansaplastique
    Participant

    I’d like to offer visitors the ability to use CodeColorer to syntax highlight their code.

    I know that shortcodes are basically disabled for security reasons – which makes sense.

    But how can I add a “safe” shortcode to bbpress?
    The WP plugin bbPress2 Shortcode Whitelist and bbPress do shortcodes are not working (the latter even being risky at best).

    bbPress: 2.2.3
    WP: 3.5
    Theme: my own development

    steve02a
    Participant

    I have a pre-installation question regarding the registration and login parts.

    If I install the bbpress into my wordpress site – can I separate the registration and login from the actual wordpress registration and log in so the user doesn’t actually have an account on my wordpress site, but rather their account is only contained for the bbpress? I don’t have a blog or offer replies on my pages, so I have no need for people to create some user account on my site for that purpose. I do use a registration/login on my site, but that redirects users somewhere else away from my site.

    So, can this be accomplished in bbpress?

    Thanks in advance for your reply…

    #124803
    Hansaplastique
    Participant

    I was looking for a way to make sure forum posts are always edited in the WYSIWYG mode of the fancy editor, and found an easy solution to hide raw text (both tabs actually disappear with this) – in case someone is looking for this as well;

    In the template files (only copy the files you need from wp-content/plugins/bbpress/templates/default/bbpress to your theme folder, into a folder called bbpress, for example wp-content/themes/mytheme/bbpress) you’ll find numerous calls to:

    bbp_the_content( array( ‘context’ => ‘reply’ ) );

    In your template files replace a call like this with (ie. add: ‘quicktags’ => false);

    bbp_the_content( array( ‘context’ => ‘reply’, ‘quicktags’ => false ) );

    The calls can be found in all form-xyz.php files.

    #124800
    gregfielding
    Participant

    I tried defining the language in wp-config. It had no effect.

    So, to summarize… I’ve tried calling renaming my files bbpress.po & .mo and bbpress-en-US.po & .mo, I’ve tried them in /wp-content/languages/bbpress/ and in /wp-content/plugins/bbpress/languages/ folders, and I’ve tried define (‘WPLANG’, ‘en-US’); in config.php.

    Is there anything else I can try? The instructions linked above were for changing languages completely and I’m not looking to do that. I just want to relabel a bunch of the wording, changing “topics” to “questions” and so on.

    Anyone know of anything else I can do to make that work?

    Thanks!

    #124799
    Yurij
    Participant

    I am trying to translate the bbpress plugin v2.2.3 to swedish.

    I have followed this guide:
    http://codex.bbpress.org/bbpress-in-your-language/
    But its not working 🙁

    #124798
    Fyn
    Participant

    There’s no bbpress folder in my theme folder, so that can’t be it.
    I also downloaded bbPress und replaced the bbPress theme folder in the plugin directory to see if anything there was broken…
    Well, I figured it works if I activate the twentytwelve theme. So something must be missing in mine.

    #124797
    teachercast
    Participant

    Stephen,

    Would you be able to help me learn how to turn off Debugging and perhaps tell me what that means?

    Thanks…

    Jeff

    Starejosel
    Participant

    Does anyone know if TinyMCE Advanced works with WP 3.5 and BBpress 2.2.3?

    Thanks!

    Martin

    #124793
    #124792
    Flyhead
    Participant

    This sounds encouraging. I am running a standalone bbpress forum v1.02, so does it mean that it can simply install WordPress, then install this latest version of bbpress and I can import from there all my existing forums, user datas and threads? Would all the urls correspond with the old ones?

    #124791
    Lynq
    Participant

    The only thing I can think of is that there is some template files that are overriding the default bbPress theme and they are erroring because of some custom function or have no actual code in them.

    Have you had a look in your theme folder to see if there is a bbpress folder, is there any files inside that folder?

    #124789
    A.I. Sajib
    Participant

    Hi,

    No, WordPress permalink isn’t affecting bbpress forum posts. It’s taking its slugs from the topic title instead of using post-id.

    #124788
    Lynq
    Participant

    Just to clarify, your wordpress permalinks are already set as /post-id/{id} and bbPress is not using this permalink structure? I am not sure if bbPress is setup to be able to use a different permalink structure…

    Lynq
    Participant

    @anointed This uses the same functions that teamoverpowered.com uses, plus it only creates a couple of custom functions, these custom functions all use built in bbPress functions to retrieve any data, no custom queries.


    @dramaticbaby
    This is something I am currently looking into, unfortunately it is not as easy as it sounds, i’ll keep you informed if I get round to updating the theme with this.

    I will probably look at re doing the whole theme for the main forum view, sub forum view and topic view, make that nice and slick and fluid then move onto some profile pages and stuff.

    #124783

    In reply to: Future of bbpress

    Kasparas
    Participant

    Thanks, didn’t notice blog 🙂

    #124781

    In reply to: need help please !!

    Tanya
    Participant

    Try this: https://wordpress.org/extend/plugins/bbpress-post-topics/

    #124778
    Shane Gowland
    Participant

    bbPress uses WordPress’ database to store its data. Specifically, the wp-posts table.

    #124777
    midnighz
    Participant

    Thanks for reply @Johnjamesjacoby

    So, now I should try to query it from database.
    I’ve found this post, https://bbpress.org/forums/topic/display-a-list-of-recent-topics/

    Can I ask you a simple dump question? (because I’m really newbie here and I want to finish my work as soon as posible 🙁 )
    Where is bbPress database located? Or how can I access to modify it?

    I’ve look around in my phpMyadmin but it has only WordPress database.

    Thank you again for help. 🙂

    #124776

    Topic: need help please !!

    in forum Plugins
    slavikads
    Participant

    hi everybody,
    i have installed a bbpressw on my wordpress blog and i want to make a little moderation.
    i need to my post on wordpress will shown as a topic in bbpress. i have no idea where to start i someone can help me with that i will be greatful !!
    thanks :))

    Camille
    Participant

    Scenario:
    When I upgraded Buddypress and BBpress recently (two weeks ago), members can’t access the site-wide forums properly anymore.
    1. Regular members can’t view the first entries in single topic pages anymore.
    2. They don’t have access to the hidden forums they could access before.

    All in all, only admins can see anything.

    While trouble shooting, the ‘missing’ posts and forums show up when I have BuddyPress disabled. Could this be a user privilege conflict? I’ve reset my User Role Editor and deactivated the plugin but it didn’t solve anything. What I’m scared I have probably destroyed the capabilities settings completely. Is there a way to fix this without having to start from scratch? I’m more concerned about the content we’ve built up in more than a year.

    Buddypress 1.6.2
    BBPress 2.2.3
    Wordpress 3.5

    #124773

    In reply to: Messages with Images

    Tanya
    Participant

    This might be what you’re after: https://wordpress.org/extend/plugins/gd-bbpress-attachments/

    #124772

    In reply to: Future of bbpress

    Tanya
    Participant

    You might want to check out the blog: https://bbpress.org/blog/

    Lots going on with bbPress.

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