Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 16,751 through 16,775 (of 32,503 total)
  • Author
    Search Results
  • solsikkehaven
    Participant

    load_text_domain is used in bbPress instead of load_plugin_textdomain – codestyling localization plugin reports….some filter and actions won’t be executed anymore…. “please contact the author”

    Done.

    #111798
    LabSecrets
    Participant

    They are essentially the same, as the bbPress plugin is installed via buddypress upon demand.

    We’ve done a little tutorial video to show how you can setup either a BuddyPress Group Forum, a SiteWide bbPress 2.0 Forum, or a custom hybrid forum page using shortcodes. You can have all three at one time. Hope this helps ;-)

    http://labsecrets.com/2012/01/23/buddypress-and-bbpress-forums-made-easy/

    Cheers!

    Spence

    http://labsecrets.com

    #42236

    hi,

    please how can i add a new loop template ?


    explication :


    in :

    <?php if ( bbp_has_topics() ) : ?>

    <?php bbp_get_template_part( ‘bbpress/loop’, ‘topics’ ); ?>

    <?php else : ?>

    it load the template : loop-topics.php

    exemple i need to do a copie of this template : loop-topics2.php

    i will use :

    <?php if ( bbp_has_topics() ) : ?>

    <?php bbp_get_template_part( ‘bbpress/loop’, ‘topics2’ ); ?>

    <?php else : ?>

    but i do not work !

    thetalltree
    Member

    I was able to display website address in the profile by adding the following code to the ‘user-details’ file: (located under ‘bbpress > bbp-themes > bbpress > user-details.php’)

    <?php echo bbp_get_displayed_user_field( 'user_url' ); ?>

    But I am not able to do the same to display a user’s yahoo messenger, gtalk and AIM handles.

    Also is there a way to display a user’s facebook page?

    Grabinark
    Member

    I’ve recently added the elegant and hugely popular (2 million+ downloads) Lockerz Share button (links to Facebook, Twitter, etc.) to my WordPress site and it’s doing a splendid job on pages and posts, but sadly it’s mucking up my bbPress forum page something horrible, with the button appearing underneath the name of each forum and double-spacing everything in the process. I built the page using the forum-index shortcode.

    Having a share button in this location (or rather having multiple buttons, one per forum name) makes little sense as few people will want to share the name of a forum, so I’d like to remove it.

    The Lockerz readme file tells one that to remove a button from individual posts and pages: “Insert the following tag into the page or post (HTML tab) that you do not want the button to appear in: <!--nosharesave-->

    I’ve tried adding that tag (without the quotes) to the top of my forum page using the HTML editor, but it don’t work (the share buttons still appear under each forum name), so my question is: Can someone tell me the bbPress page or file name to which this tag should be added?

    I realize this is a bbPress support forum and not one for Lockerz, but on the off-chance another bbPress user has come across the same problem I thought I’d ask (I would have started with a Lockerz forum, but there doesn’t seem to be one).

    If I can’t solve this problem I’m going to have to ditch the Lockerz share button and replace it with something that works better with bbPress — suggestions welcome.

    Here’s the button I’m using: http://share.lockerz.com/ .

    #110150

    The code by Martin_C fixed this for me! Great help. :-)

    #110508
    DavidK
    Member

    Hi there,

    I really need a forum plugin that will work in a WP multisite environment. bbPress is one of the few that I’ve tried that works, but my Theme is not compatible.

    I also need a forum that if one ‘attaches’ a post that includes a featured image, that that image appears in the forum. bbPress seems to do that.

    I’m using Atahualpa from BFA which I like because there is a very good interface to customize it with many many options.

    I do not have the programming skills to do a lot of changes or writing of code from scratch, but I can certainly follow clear directions.

    It’s really too bad that there doesn’t seem to be a bbPress interface for changing the look … Currently it’s using the default, which divides the presentation page 50% for user info; 50% for content…. Not really work’en.

    Is there a plug-in that will give me a CSS menu to edit or a way to modify the template without being a programmer?

    I would also like to be able to ‘turn-off’ the bbPress profile, since I would prefer that folks simply use the WP profile and not have to do stuff over again.

    Can you help??

    I can give you access to: masterclasses.icp.edu if it would help.

    Thanks…

    #108551

    yes it happen on the title tag on the header source code

    <title>Topic: This is a new topic</title>

    <title>Forum: This is a new forum</title>

    #111812

    So, the functions that actually output the feeds are hooked in. Rather than hack the core, you could write a small plugin that unhooks the core feed, and hooks your custom code instead. The feed functions are at the bottom of the bbp-includes/bbp-*-functions.php files. Copy and paste those into your plugin, change the text as needed, and do the above, and you’re set.

    #111811
    Rodrigo
    Participant

    I was afraid of that :-)

    Isn’t there a place/file where I could replace the string “translatable” direct on the code?

    Even if I need to do this every time plugin updates itself, I guess it’s easier than install and generate a new translating file…

    []’s!

    #111815

    In reply to: Son of a…

    Happens to the best of us. :)

    #42213
    gplana
    Participant

    Hi.

    I have installed bbPress on my WordPress and I’m trying to personalize it.

    I have already personalized the forum page (where list of topics appear) by editing file wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/bbpress/loop-single-topic.php and it worked well.

    However, I can’t personalize the topic detail’s page. I thing the entry point here is wp-content/plugins/bbpress/bbp-themes/bbp-twentyten/single_topic.php so I added some html code in there but it doesn’t appear (even on the html code that navigator gets) when clicking on a title on the topic.

    I’m stuck. Can anyone give me a clue ?

    Thank you.

    #107402
    drsim
    Member

    can i use the reply short code in the place of wordpress comment ? i am running bbpress as plugin.

    thanks

    #42200
    Baichi
    Participant

    Is it possible to find out where certain shortcode is in the actual bbpress code? In particular I”m thinking the code for bbp-topic-index.

    The styling must be in the a file somewhere yeah? So why not have some sort of file map or layout so people could get in and play with it a little at their own peril?

    #82858
    webgraf
    Member

    Is there any reason why this code (from Milan Dinic) does not work for me on apcahe 2, and php5.x?

    #111780
    gplana
    Participant

    Hi again, John.

    I’m answering myself :)

    I followed your clue and found this link: https://codex.wordpress.org/Taxonomies which explains very well what to do for creating a ‘forum_categories’ taxonomy.

    Then I think I can just call bb_has_topics from my template with this parameter:

    array(‘forum_categories’ =>

    array(‘searched_category1’, ‘searched_category2, ….)

    )

    I will try and let you know.

    Thanks a lot !!

    #42174

    bbp_check_user_edit() appears to use the following condition:

    if ( !is_user_logged_in() || ( is_multisite() && !current_user_can( ‘manage_network_users’ ) && bbp_is_user_home() && !apply_filters( ‘enable_edit_any_user_configuration’, true ) ) || !current_user_can( ‘edit_user’, bbp_get_displayed_user_id() ) ) {

    The key portion of that being:

    ( is_multisite() && !current_user_can( ‘manage_network_users’ ) && bbp_is_user_home() && !apply_filters( ‘enable_edit_any_user_configuration’, true ) )

    This appears to be written intending to disable the ability for site admins on a network to edit users. However the code here does not seam to do any tests for what the user id is and who’s currently logged in.

    This has the unwanted effect of removing the ability for a normal non-superadmin user to edit their own profile because this code activates when multisite is enabled and doesn’t take the fact they are trying to edit their own profile into account.

    #110503
    aravoth
    Participant

    Search BBpress plugin is not functioning now, I am using the latest version of 2.1, the error message I get is…

    Fatal error: Call to undefined method stdClass::have_posts() in wp-content/plugins/bbpress/bbp-includes/bbp-topic-template.php on line 308

    Line 308 of bbp-topic-template.php looks like..

    function bbp_topics() {
    global $bbp;

    // Put into variable to check against next
    $have_posts = $bbp->topic_query->have_posts();

    // Reset the post data when finished
    if ( empty( $have_posts ) )
    wp_reset_postdata();

    return $have_posts;
    }

    Not sure what the problem is here…

    #111768

    Anything is possible, but it would need to be built; it does not exist in bbPress currently. :)

    #42159
    maryjan
    Member

    I have one portal with 6 subdomains. All in wordpress multisite network. I have also install buddypress and bbpress all in the newest versions.

    I want to have only one forum on main site where i will have forums for subdomains blogs. These forums i can create manualy.

    The issue is.

    How can i get the latest topics from each forum from main site on subdomain blog ?

    Do I need to get it from databese or how ?

    Please help me :)

    ebiznet88
    Member

    Any replies from the mods or plugin creators?

    Seems only spammers are responding ;)

    Looks like this thread and plugin has been abandoned :(

    I had high hopes for this plugin and forum but looks like I’ll have to look elsewhere. I’ve wasted enough time and effort on this!

    #111766

    Hey JJJ, glad you like the video. Feel free to include it in the codex.

    1. I’ll look at making a child theme “friendly” version of this video. I agree, it’s important for end users to know how to implement this. I was mostly providing this for developers who are creating premium themes & wanting to bundle bbPress.

    2. Good point. I totally forgot about “bbpress.php”. I’ll look into it.

    #111757
    gabekassel
    Participant

    all i see in console on all pages that seems pertinent is following. any meaning?

    Notice: wp_register_style was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /home/optccpco/public_html/wp-includes/functions.php on line 3587

    WishList Member Bug. Please file a report at WishList Products Support
    Run-time warning
    Error: Cannot modify header information - headers already sent by (output started at /home/optccpco/public_html/wp-includes/functions.php:3587)
    Location: /home/optccpco/public_html/wp-content/plugins/wishlist-member/wpm.php(35) : eval()'d code(3) : eval()'d code line number 148

    Warning: Cannot modify header information - headers already sent by (output started at /home/optccpco/public_html/wp-includes/functions.php:3587) in /home/optccpco/public_html/wp-content/plugins/wishlist-member/wpm.php(35) : eval()'d code(3) : eval()'d code on line 148

    #111765

    That’s awesome Chris! Great work! Mind if I link this video in a page in the Codex?

    When it comes time to put together round 2 of this video, I have a few suggestions on things I’d like to see included.

    1. Instead of dropping the files into the active theme, can you walk through quickly making a child theme? I bet many users are not able to hack away at the core files of their themes because they’ve purchased them just don’t have control over that code.

    2. Have you looked into dropping a ‘bbpress,php’ file into the root of the existing theme? You get less control over the actual template code, but it speeds up the process of getting the sidebar placement working in forums, topics, and the various other edit screens.

    3. Good tip on loading the JS in the footer. Probably a core patch there so no one has to do that later. :)

    That’s my only real suggestions. The video is great and does a good job at showing how easy it is to do with a little bit of investigation into the code.

    #111750

    In reply to: bbPress Codex

    It’s live!

Viewing 25 results - 16,751 through 16,775 (of 32,503 total)
Skip to toolbar