Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 17,001 through 17,025 (of 32,506 total)
  • Author
    Search Results
  • #108077
    wvanderzee
    Participant

    De po-file lijkt me niet compleet, er zijn nog een hoop teksten die in Engels worden weergegeven. (Of heb ik het mis?)

    Ik heb nu zelf een hoop vertalingen gedaan, maar in de code zelf. Dat is natuulijk niet de meest handige oplossing, want bij upgrades van bbPress zou ik die weer kwijt zijn.

    Kun je zelf vertalingen aan de po-file toevoegen?

    Wil eventueel helpen bij verder vertalen van bbPress, indien nodig!

    #109647
    FTPpass
    Member

    I just had the same problem but figured it out.

    Probably not the cleanest solution but it works

    go to the bbp-themes/bbp-twentyten/bbpress/ folder

    open forum-topic.php

    search for “form-allowed-tags”

    select and delete

    <?php if ( !current_user_can( 'unfiltered_html' ) ) : ?>

    <p class="form-allowed-tags">
    <label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label>
    <code><?php bbp_allowed_tags(); ?></code>
    </p>

    <?php endif; ?>

    #41364
    effengfx
    Member

    heres my site

    http://de5igno.com/dosebox/

    its not letting me post a new topic….. i filled out the topic line with “this is a tester”

    and it said

    ERROR: Your topic cannot be empty.

    also i noticed at the top it said

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘bp_activity_at_name_filter’ was given in /home/content/32/5264432/html/de5igno/dosebox/wp-includes/plugin.php on line 170


    its not letting me post a reply… i filled out the text box but still it says

    ERROR: Your reply cannot be empty.

    and

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘bp_activity_at_name_filter’ was given in /home/content/32/5264432/html/de5igno/dosebox/wp-includes/plugin.php on line 170


    another issue im facing is finding the forum index page:

    im able to view this page:

    http://de5igno.com/dosebox/chatr/general

    but this page is broken

    http://de5igno.com/dosebox/chatr/


    i also noticed it says comments off

    GENERAL

    Posted on December 18, 2011, in , with Comments Off

    shooo
    Member

    Thx for our work. it’s really cool :)

    i try to import 169 000 post of my phpbb, it’s very very very long :D

    thx again :)

    #107514
    hscoder
    Participant
    #41363
    billnanson
    Member

    Import tool seems a little trial and error…

    I have a relatively modest ‘standalone’: 324 Registered Users and 1,573 posts.

    Backups done, plugins switched off, default template chosen; imported users apparently okay – though luckilly I did work out that it changed my wp login credentials to that of the bbpress standdalone – my wp-admin old admin account login no-longer functions – but hey, probably better for security ;-)

    The next stage of importing forums and topics stalled. Now if I try and start again I get the “There was a problem dropping the wp_users and wp_usermeta tables… …or drop the tables yourself” message.

    What to do next?

    Thanks

    #100787
    zofar143x
    Member

    I had to use the following code in order to get it to work:

    !(is_post_type_archive( ‘forum’ ) || is_singular( array( ‘forum’, ‘topic’, ‘reply’ ) ))

    I needed to use is_post_type_archive() in order to get the widget to disappear from the forum index because none of the following tags worked:

    !is_page() (tried with slug, id and title)

    !is_single() (tried with slug, id and title)

    !bbp_is_forum()

    !is_page_template( ‘page-front-forums.php’ )

    as well as a bunch of other stuff I forgot. Does anyone know if there is a simpler tag that I can use?

    #105887
    zofar143x
    Member

    I had to use the following code in order to get it to work:

    !(is_post_type_archive( ‘forum’ ) || is_singular( array( ‘forum’, ‘topic’, ‘reply’ ) ))

    I needed to use is_post_type_archive() in order to get the widget to disappear from the forum index because none of the following tags worked:

    !is_page() (tried with slug, id and title)

    !is_single() (tried with slug, id and title)

    !bbp_is_forum()

    !is_page_template( ‘page-front-forums.php’ )

    as well as a bunch of other stuff I forgot. Does anyone know if there is a simpler tag that I can use?

    #107380
    Csaba.io
    Member

    Hello. I have some problems with the forum :( (location: http://boldogics.com/home/forums/)

    Some pages are working, and some pages are not visible…

    I’ve tried some shortcodes, but nothing logical….

    @folgerj : i’ve seen your forum. Can you please help me to configure mine too?

    #41308
    Marvin
    Member

    I believe that I have installed bbPress correctly and setup the shortcodes so that the forum displays on my site (both the topics, login, and registration). But the problem is that once I believe I’m logged in and I click on a topic to try to add something, it will not let me. It says this:

    “You must be logged in to create new topics.”

    Can anyone tell me what I’m doing wrong? I setup a new user to test it out and this is what I’m getting the problem with. I setup blank topics ok when I’m logged in as administrator so is it an issue with user rights? Here is my forum:

    http://www.theheartbandits.com/forum.html

    enderpal444
    Member

    I’d like to know this too.

    #108601

    Hi Steve,

    I would greatly appreciate it if you could post a link to the code here.

    Thanks,

    Chris

    #41333
    iftomkins
    Participant

    I’ve been using the bbPress Custom Views plugin (http://wordpress.org/extend/plugins/bbp-views/). I’ve been creating custom views, but I’m wondering how to create a custom view which is an AND or OR statement, so meets 2 different conditions. Here’s an example (though written incorrectly of course).

    bbp_register_view( 'rides-needed', __( 'Rides Needed' ), array( 'meta_key' => 'needed_offered', 'meta_value' => 'Need a Ride' AND/OR 'meta_key' => 'ride-destination', 'meta_value' => 'Timberline'), false );

    So, that is to say: display the topics WHERE:

    meta_key “needed_offered” = ‘Need a Ride’

    AND

    meta_key “ride-destination” = ‘Timberline’.

    From Gautam’s post (http://bbpep.com/2011/04/creating-custom-views-in-bbpress/) I know I can use these parameters (http://codex.wordpress.org/Function_Reference/WP_Query#Parameters), but I’m not sure how to translate WPQuery into the register views function. Thanks in advance!

    #108600
    Steve
    Participant

    I’ve got it working – I messaged him but then went in and dug round the code and its now working with the new V3 PHP API from FB.

    Not sure what to do, but I’m happy to zip it up and post a link to it.

    Steve

    aravoth
    Participant

    It’ll take some CSS wizardry, something like

    .bbPress #primary #content {

    margin: 0 2% 25px 5%;

    width: 90%;

    }

    and you’ll probably have to adjust other things to make it look good. Actually there is a guy who posted a twenty eleven child theme that extends bbpress out to the full page width.

    he posted it here, his website is serverpress.com or something like that.

    #110128
    eraleks
    Member

    But what of my theme hasnt scripted anything for bbpress?

    Basicly I have to able to write css to be able to change bbpress layout on my page? Therese is no way to just upload some theme or Copy/paste some code?

    #41325
    drewdavid
    Participant

    Hi I’m having a bit of an odd problem…

    I can’t view the forum I have created with a new user given the role of “forum participant”. When I bump up the permission of the user to “forum moderator” he can then see the forums!

    Would someone be willing to help me ascertain what this is about? I could create a user account for you to check into my installation if it would help.

    Many thanks. :)

    #108625
    Gil
    Member

    Would it make sense to have the option to allow shortcodes? Simply ON|OFF choices? I have a forum for members of a club, registration required, and using WP-FILEBASE which has a bunch of shortcodes for inserting links to files. Just an example of one good case for allowing at least a choice.

    gil

    benfrain
    Member

    I wanted to add a simple login/out link in the ‘breadcrumb’ area of every page which I did by using the code on this page: http://bbpress.org/forums/topic/bbpress-20-plugin-adding-a-log-inout-link-to-the-top-of-every-forum-page

    However, I’d also like to add a ‘edit profile’ link as there doesn’t seem to be an easy way for users to do this.

    Could anyone tell me how I would amend this to add a edit profile link?

    $bb2custom_user_is_logged_in = 'Welcome '.$current_user->user_login.'. You can log out <a href='.wp_logout_url( get_permalink() ).'>here</a>.';

    Something like this but I’m unsure of the syntax (plus being a ‘front-end’ chap, I’m crap with PHP):

    $bb2custom_user_is_logged_in = 'Welcome '.$current_user->user_login.'. You can log out <a href='.wp_logout_url( get_permalink() ).'>here</a>. Or edit your profile <a href='.bb_press_edit_profile().'>here</a>';

    #108599

    I have written to moogie on Facebook. Hopefully he will have some time to review this thread. Stay tuned…and keep your fingers crossed ;-)

    #108583
    hscoder
    Participant

    you are saying right… it has great customization capability.i have also customized bbpress 2.0 in my site and now it is looking good.You should see my forum.

    forum Home page:

    http://www.authorcode.com/forums/

    topic page:

    http://www.authorcode.com/forums/topic/save-listview-data-to-same-excel-file-but-different-sheet/

    #108582
    danielkj
    Member

    The setup and appearance of the forum is great – and i looked forward to use it on my site.

    But i have big issues with plugins that not support v 2.0.2. Most plugins are old and +1 years old. The wise plugin makers really need to upgrade the great old plugins to support the new bbpress version :)

    #108597

    Most probably Facebook changes have broken the code of this plugin. Unless someone fixes that, there might not be a chance of getting it to work.

    #110959
    @ChrisClayton
    Participant

    I did this with one of my sites simply by using a basic conditional to check if a user is logged in. If they are not logged in, they get redirected to my login page.

    https://codex.wordpress.org/Function_Reference/is_user_logged_in

    So, yes. It is possible :)

    #108595

    Hi Chris,

    Thanks for your response. I attempted to upgrade to 2.0 on a WP site. Those plugins were giving me plenty of trouble too. Additionally, I prefer the look/feel of the bbPress I’m using.

    I noticed that the error provided said ‘perms’ had been changed to ‘scope’. So, in the connect.php plugin file, I made these changes. Since uploading the new file, I now see the FB Connect pop-up and it asks me to ‘allow’ access to my profile info. After allowing access, the pop-up disappears and another error is shown on the page – Permission Denied – all.js. Code:0 http://connect.facebook.com/en_US/all.js – Line: 22 Char:4321

    While I’m a bit closer, I’m sure I’m still pretty far off from finding this on my own. Any help would be appreciated :o)

    Thanks,

    Chris

Viewing 25 results - 17,001 through 17,025 (of 32,506 total)
Skip to toolbar