Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 13,551 through 13,575 (of 32,506 total)
  • Author
    Search Results
  • #138265
    aukesch
    Participant

    AFter 1 hour searching i found it 1 minute after posting this question….
    <?php echo do_shortcode(‘[bbp-topic-index]‘); ?>

    thanks anyway

    #138264
    aukesch
    Participant

    Does anybody know how I can use a shortcode outisde a page or post?
    Im not that much of a code reader…

    I need a some code to add to the shortcode or the “sourcecode”.
    (to add a forumpart to a .php file)

    Thanks!

    #138261

    In reply to: bbPress 2.4.1

    7esmla
    Participant

    Hi Jhon james.. I just followed your video tutor bbpress on youtube, maybe I have missing html if possible check my setting plss http://new3dline.com/forums/ how resolve the code?
    Thk you

    #138257
    niuserre
    Participant

    To just change the text you can use a function.

    It is a good idea to create a child theme of Twenty Eleven first so that you can use automatic updates without losing your work (there are instructions on how to create a Child Theme on the WordPress codex).

    In your child theme folder, create a functions.php file and add this function: http://pastebin.com/CBaZjNCq

    #138254
    tatiana_k
    Participant

    I don’t know whether this is a common problem or just mine. But if you use password protected topics you better check your forums to be sure your secret discussions aren’t read by everyone.

    When a person enters the password protected topic name in the Search field, it shows the list of replies without any restrictions. While the title says that the topic is protected, the content of the reply is not hidden at all, and anyone can read it.

    I fixed it with adding post_password_required check to the loop-search-reply.php file, but I think this should be double rechecked somewhere in the plugin code.

    I tried a few themes including twentythirteen, looks like the problem doesn’t depend on a theme.

    #138247
    Holly
    Participant

    Was sent here from MySiteMyWay (my theme) so see if you could tell me how to change the path in the plugin referenced in the quote below:

    If you use these templates, http://mysitemyway.com/docs/index.php/BbPress, then you can add CSS within them to hide that.

    <style type = “text/css”>#intro { display: none !important; }</style>

    Okay, I actually tried those, but removed them.

    The issue with them is that I cannot use /forum/ as my forum root. Doing so throws my students out to the public main page. I have to have my forum root as /classrooms/htts-boot-camp-forum/ to allow them to get back to class from the forum pages.

    So is there code I can use in the plugin to allow me to use that forum root?

    If I can change my forum root within the plugins linked above to /classrooms/htts-boot-camp-forum/ (and get BOTH of those elements of the path to show within bbPress) I’ll be able to remove the doubled headers from all of my bbPress pages.

    Hoping there’s a string I can insert within the plugin to make this work.

    Thanks for any help you can offer.

    #138246

    In reply to: bbPress 2.4.1

    Unit9
    Participant

    Hi guys, 😀

    Thanks for all the incredible work you do on BBPress!

    I’m using WordPress 3.6.1, BuddyPress 1.8.1 and BBPress 2.4.1

    The page titles for wordpress and buddypress have been fixed.

    However, BBPress has completely stopped interacting with Buddypress. By this I mean no new topics, posts, mentions or any action made by my members in BBPress are showing in their profile activity or in the ‘Notifications’ section of the WP admin bar.

    I’ve also added this code to a base ‘Forum’ page:

    <?php bbp_get_template_part( 'bbpress/content', 'archive-topic' ); ?>
    
    <?php bbp_get_template_part( 'bbpress/form', 'topic' ); ?>

    And in the topic section the ‘Forum’ select field has ‘No forum’ as the default selection. Rather than taking the first forum as the default as in BBPress 2.3.2.

    Thanks!

    #138244

    In reply to: SMF Import to bbPress

    Remco Beugels
    Participant

    @manuxel
    For the smileys I think that it is a better idea to replace ::) with 🙄 (: roll :).

    #138240
    Anonymous User 9588477
    Inactive

    @stephen, thanks for your comment! I have solved the problem! I have doenlaod the translations .po and .mo from the /dev branch and upload those 2 files to wp-content/bbpress/languages/ and rename the files to bbpress-nl_NL.po & bbpress-nl_NL.mo

    #138230
    Robin W
    Moderator

    Can’t see anything wrong with your code is_bbpress()works on my conditional statements

    #138229
    Robin W
    Moderator

    BBpress comes with roles that you can set for each user, just go into dashboard>users and set them up – they’re at the bottom of the page

    see this article

    https://codex.bbpress.org/bbpress-user-roles-and-capabilities/

    AntonyC
    Participant

    Hi, I’m also having the exact same problem and I’m wondering why this hasn’t been addressed yet? It wouldn’t have been an issue for me but BuddyPress now insists that you use bbpress for the forums.

    PLEASE help someone!

    #138223
    koendb
    Participant

    Thanks Zearl, need to modify your code slightly to get it to work:
    Had to remove ‘$user_role’

    function my_custom_roles( $role, $user_id ) {
    if( $role == ‘Key Master’ )
    return ‘Site Owner’;
    return $role;
    }
    add_filter( ‘bbp_get_user_display_role’, ‘my_custom_roles’, 10, 3 );

    #138221

    In reply to: disabling breadcrumbs

    Philip John
    Participant

    @mdroca You should paste that code into your theme’s functions.php file. Here’s a guide on how to do that safely: http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/

    Also, for others wanting to hide bbPress breadcrumbs, this code is a bit more compact but does the same job:
    add_filter('bbp_no_breadcrumb', function($arg) { return true; } );

    #138216
    WPSeeker
    Participant

    Thanks for the reply Stephen. Am I correct in assuming that posting to bbPress is just like creating any WordPress custom post?

    And if so, could I make my own post submission form using Gravity Forms, or are there hooks that need to be used to get it to post correctly?

    #138213
    Stephen Edgar
    Keymaster

    There is no way to automatically assign topic tags at this stage.

    #138212
    #138211
    WPSeeker
    Participant

    Great, thanks it worked! Is there any way of doing something similar with the tags? I want the tags automatically created without the user having any choice.

    #138209
    Stephen Edgar
    Keymaster

    Also updated the codex to reflect the correct shortcode syntax https://codex.bbpress.org/shortcodes/

    #138208
    Stephen Edgar
    Keymaster

    Try using [bbp-topic-form forum_id=544]

    WPSeeker
    Participant

    Hi

    I read in the docs that you can now specify a forum to post to using the shortcodes without having to use the dropdown forum selection.

    I tried using this shortcode but it doesn’t seem to work and I still get the dropdown.

    [bbp-topic-form id=544]

    I want to load a form to create a new thread but have the forum hardcoded.

    Thanks

    #138204
    Stephen Edgar
    Keymaster
    #138203

    In reply to: Auto Role not working

    Stephen Edgar
    Keymaster

    What happens after you have run the repair tool “Remap existing users to default forum roles”
    https://codex.bbpress.org/repair-forums/

    #138202
    Stephen Edgar
    Keymaster

    You may have enabled ‘Threaded Replies’ in the settings and this would stop you from seeing any pagination.

    https://codex.bbpress.org/forum-settings/#forum-features

    #138200
    Stephen Edgar
    Keymaster

    Yes, they will get overwritten and details on what to copy and where to copy them to can be found here:
    https://codex.bbpress.org/theme-compatibility/

Viewing 25 results - 13,551 through 13,575 (of 32,506 total)
Skip to toolbar