Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 19,576 through 19,600 (of 64,534 total)
  • Author
    Search Results
  • #149269
    Robkk
    Moderator

    Unfortunately I pasted the code correctly, but I still do not see a link anywhere

    well like is said i had trouble with it too i had the code in my content-archive-topic.php and then it disappeared for some reason.

    But before i had the code there i just threw it into loop-topics.php so it should work.

    But if your a style freak like me you will get annoyed whenever you look at your favorited topics and subscribed topics and also see the new thread link there too.

    Any other ideas perhaps?

    No idea, flush cache?

    Sorry for bothering you man

    nah your not bothering

    ok delete the new thread code from content-archive-topic.php

    and now copy loop-topics.php into your child theme

    the entire code of loop-topics.php should look like this

    <?php
    
    /**
     * Topics Loop
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    ?>
    
    <?php do_action( 'bbp_template_before_topics_loop' ); ?>
    
    <ul id="bbp-forum-<?php bbp_forum_id(); ?>" class="bbp-topics">
    
    <a class="bbp-new-topic-button" href="#new-post">New Thead</a>
    
    	<li class="bbp-header">
    
    		<ul class="forum-titles">
    			<li class="bbp-topic-title"><?php _e( 'Topic', 'bbpress' ); ?></li>
    			<li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li>
    			<li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>
    			<li class="bbp-topic-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li>
    		</ul>
    
    	</li>
    
    	<li class="bbp-body">
    
    		<?php while ( bbp_topics() ) : bbp_the_topic(); ?>
    
    			<?php bbp_get_template_part( 'loop', 'single-topic' ); ?>
    
    		<?php endwhile; ?>
    
    	</li>
    
    	<li class="bbp-footer">
    
    		<div class="tr">
    			<p>
    				<span class="td colspan<?php echo ( bbp_is_user_home() && ( bbp_is_favorites() || bbp_is_subscriptions() ) ) ? '5' : '4'; ?>">&nbsp;</span>
    			</p>
    		</div><!-- .tr -->
    
    	</li>
    
    </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
    
    <?php do_action( 'bbp_template_after_topics_loop' ); ?>
    #149267
    gogitossj34
    Participant

    Okay, I’ve just tried to delete the line get_footer in my old bbpress.php file and it worked. The only problem now is how to set it to full width. Can you help me with that. Sr for double posting.

    #149264
    Robkk
    Moderator

    1 [x] admin links show up in a dropdown menu

    2 [x] admin links work while in the dropdown menu

    3 [x] admin links work on every post

    4 [x] different admin links show up depending on post type

    5 [x] admin links hover over all objects and is not hidden if all the way right

    6 [x] dropdown menu show links to all users

    7 [/] add report content link and ignore user link on reply admin links

    8 [/] and mark as read, report content , ignore user, favorite , and subscribe links to topic admin links

    *2 cant single out stick , and (to front) to where its on 2 different li
    *3 Fixed with different css code
    *5 used z-index
    *7 only ignore user is left (1/2)
    *8 only ignore user is left (4/5)

    will post code when i fix some css positioning for original bbpress layout

    jaciando1
    Participant

    hi there, I am running latest wordpress, buddypress and bbpress. on my registration form I have the standard wordpress details – username, email and password fields – but then I also have the username field for buddypress – in profile base fields which cannot be deleted. how can I delete one of these – or sync them – so that user only has to enter one username and not get confused with which username to use for logging in etc. please – someone I need urgent help on this – have already asked in buddypress forums but no luck yet. pllllleeeeeeaaaaasssseeee.

    #149262
    Herophantom
    Participant

    Thank you.

    I would also like to update, so after reading some more last night, I found the documentation on the short codes. I tried making a dedicated page and using the short codes to load the main forum index. Now this works in almost every way, including using the proper sidebar that I want, however, the search option at the top is now off set, with the button below the bar instead of next to it. I have been fiddling with the CSS for awhile to see if I can get it to align properly, but so far no luck. And now, even the page provided by the bbpress plugin is doing the same thing. So maybe I messed something up, or maybe I’m just missing something, but if I can get this solved, I will have a perfect solution.

    #149260
    #149258
    Robkk
    Moderator

    what am I doing wrong guys?

    reading carefully

    your suppose to put <a class="bbp-new-topic-button" href="#new-post">New Thead</a>

    above <?php do_action( 'bbp_template_before_topics_index' ); ?>

    like this

    
    <?php
    
    /**
     * Archive Topic Content Part
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    ?>
    
    <div id="bbpress-forums">
    
    	<?php if ( bbp_allow_search() ) : ?>
    
    		<div class="bbp-search-form">
    
    			<?php bbp_get_template_part( 'form', 'search' ); ?>
    
    		</div>
    
    	<?php endif; ?>
    
    	<?php bbp_breadcrumb(); ?>
    
    	<?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?>
    
    <a class="bbp-new-topic-button" href="#new-post">New Thead</a>
    
    	<?php do_action( 'bbp_template_before_topics_index' ); ?>
    
    	<?php if ( bbp_has_topics() ) : ?>
    
    		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    		<?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    
    		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    	<?php else : ?>
    
    		<?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    
    	<?php endif; ?>
    
    	<?php do_action( 'bbp_template_after_topics_index' ); ?>
    
    </div>

    tell me if you got it to work now

    #149256
    Pavle123
    Participant

    Okay I am here with “New Thread button”

    1)Downloaded folder content-archive-topic.php from my bbPress plugin folder.
    2)Uploaded whole folder to my child theme
    here is how it looks now
    content.php

    On top of the code in that folder I added this code :

    <?php do_action( 'bbp_template_before_topics_index' ); ?>
    
    <a class="bbp-new-topic-button" href="#new-post">New Thead</a>

    So now my folder looks like this

    
    <?php do_action( 'bbp_template_before_topics_index' ); ?>
    
    <a class="bbp-new-topic-button" href="#new-post">New Thread</a>
    
    <?php
    
    /**
     * Archive Topic Content Part
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    ?>
    
    <div id="bbpress-forums">
    
    	<?php if ( bbp_allow_search() ) : ?>
    
    		<div class="bbp-search-form">
    
    			<?php bbp_get_template_part( 'form', 'search' ); ?>
    
    		</div>
    
    	<?php endif; ?>
    
    	<?php bbp_breadcrumb(); ?>
    
    	<?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?>
    
    	<?php do_action( 'bbp_template_before_topics_index' ); ?>
    
    	<?php if ( bbp_has_topics() ) : ?>
    
    		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    		<?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    
    		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    	<?php else : ?>
    
    		<?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    
    	<?php endif; ?>
    
    	<?php do_action( 'bbp_template_after_topics_index' ); ?>
    
    </div>
    
    

    Unfortunatlelly I am unable to see new thread link anywhere, what am I doing wrong guys? @netweb @robkk ?

    #149251
    Robin W
    Moderator

    ok, so in your PC create a file called bbpress.php

    (you can use notepad for this)

    then dump this code into it

    <?php
    
    /**
     * bbPress - Forum Archive
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    get_header(); ?>
    
    	<?php do_action( 'bbp_before_main_content' ); ?>
    
    	<?php do_action( 'bbp_template_notices' ); ?>
    
    	<div id="forum-front" class="bbp-forum-front">
    		<h1 class="entry-title"><?php bbp_forum_archive_title(); ?></h1>
    		<div class="entry-content">
    
    			<?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
    
    		</div>
    	</div><!-- #forum-front -->
    
    	<?php do_action( 'bbp_after_main_content' ); ?>
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    save it and using ftp copy it to get

    wp-content/themes/%yourthemename%/

    where %yourthemename% is the name of your theme

    so you end up with

    wp-content/themes/%yourthemename%/bbpress.php

    bbpress will then use this template

    Come back and let us know how you get on !

    #149249
    allieslabs
    Participant

    Vikaria brings up an excellent example. We would like our topics to order exactly like they do on the bbpress.org homepage. Any suggestions or advice as to what we may be doing wrong and how to remedy the situation? Thanks!!

    #149248
    vikaria
    Participant

    Exactly – the same way the most recent topic posts are listed in order of recency on the main http://www.bbpress.org page.

    #149247
    Vladimir
    Participant

    Hi guys,

    This is my first question about this bbPress, I’m a new developer and I have quite a few difficulties to learn and use this plugin, writing this message to ask about one thing what I need to put on my forum. That is the description below the title of the forum is here:

    I could only put it in the forum:

    Website: http://test.grupodeartes.com/forums/

    Thank you very much, I hope you can help me.

    #149246
    allieslabs
    Participant

    Hey Guys,

    We would like the topics on the Forum index page to display in order of Freshness. I understand this to be the default behavior, but for some reason our forum is not using that ordering.

    http://cornerstonecollective.com/forum/

    I have looked in settings and dug into the source code looking for a way to set the order to use the appropriate meta data, which I believe to be _bbp_last_active_time, but cannot seem to find the answer. Any suggestions would be most appreciated!

    Thanks!

    WordPress Version: 3.9.1
    bbPress Version: 2.5.4
    Website: http://cornerstonecollective.com/forum/

    #149244
    Robkk
    Moderator

    @pavle123 damn your confused haha

    read everything carefully

    Look at the code i tell you to put in templates carefully , it is just a snippet of the template with each new code in it. So you have to copy the original template to your child theme. find where the new code on here is placed, compare it to the original and place the new code in your copy of the templates in your child theme.

    nothing goes into your child theme functions.php

    How to make similar bbpress forum to QuicSprout one?

    you copy bbpress templates into your child theme so its okay when bbpress updates, i explain exactly what template to copy and also i show you a snippet of where to put the code by the original code.

    you put custom css into anything that can handle custom css

    in bbpress.css in your child theme(you copy the original in your child theme)
    in your child themes css stylesheet
    the jetpack plugin module custom css
    a standalone custom css plugin

    if your still confused read https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-2/

    #149242

    In reply to: bbPress don't work.

    Pavle123
    Participant

    It would be useful if you could share the link or something.
    Have you pasted the forum shortcode on a page?

    Forums

    [bbp-forum-index] – This will display your entire forum index.

    #149241
    Pavle123
    Participant

    Oh crap, do you mean I should copy the whole folder content-archive-topic.php inside my theme? Well that makes sense 🙂

    Here is what I did :

    1) Uploaded content-archive-forum.php to my child theme folder.
    2) Added this piece of code at the bottom

    
    <?php do_action( 'bbp_template_after_forums_index' ); ?>
    
    </div>
    
    <?php echo do_shortcode("[bbp-stats]"); ?>

    3) Added this CSS in my style.css of child theme (CSS is not working unfortunately, not sure why?)

    .bbp-stats .bbp_stats {
        list-style-type: none;
        display: block;
        text-align: center;
        margin-left: 0px;
        float: none;
    }
    
    .bbp-stats .bbp_stats li {
        margin: 0;
        display: inline-block;
        padding: 5px;
    }

    So, now stats are shown at the bottom, but CSS is not targeting the stats.

    Okay about “new thread button” I was unable to make it work. Here is what I did.
    1) I added content-archive-topic.php folder from my bbPress plugin content-archive-topic.php into my child theme folder.

    2)Added this code

    <?php do_action( 'bbp_template_before_topics_index' ); ?>
    
    <a class="bbp-new-topic-button" href="#new-post">New Thead</a>

    At ABOVE the content-archive-topic.php

    <?php
    
    /**
     * Archive Forum Content Part
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    ?>
    
    <div id="bbpress-forums">
    
    	<?php if ( bbp_allow_search() ) : ?>
    
    		<div class="bbp-search-form">
    
    			<?php bbp_get_template_part( 'form', 'search' ); ?>
    
    		</div>
    
    	<?php endif; ?>
    
    	<?php bbp_breadcrumb(); ?>
    
    	<?php bbp_forum_subscription_link(); ?>
    
    	<?php do_action( 'bbp_template_before_forums_index' ); ?>
    
    	<?php if ( bbp_has_forums() ) : ?>
    
    		<?php bbp_get_template_part( 'loop',     'forums'    ); ?>
    
    	<?php else : ?>
    
    		<?php bbp_get_template_part( 'feedback', 'no-forums' ); ?>
    
    	<?php endif; ?>
    
    	<?php do_action( 'bbp_template_after_forums_index' ); ?>
    
    </div>
    
    <?php do_action( 'bbp_template_after_forums_index' ); ?>
    
    </div>
    
    <?php echo do_shortcode("[bbp-stats]"); ?>

    But its not working for me.

    Any ideas?

    #149240
    rycb
    Participant

    I have the battle site and test. Installed on the test, the forum is working. When moved to the combat, an empty page. Disable plugins, reinstalled. Does not work, no errors. But the page is blank

    #149238
    Pavle123
    Participant

    Hm, okay I did not know where elswehere to put it.

    <?php
    
    /**
     * Archive Topic Content Part
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    ?>
    
    <div id="bbpress-forums">
    
    	<?php if ( bbp_allow_search() ) : ?>
    
    		<div class="bbp-search-form">
    
    			<?php bbp_get_template_part( 'form', 'search' ); ?>
    
    		</div>
    
    	<?php endif; ?>
    
    	<?php bbp_breadcrumb(); ?>
    
    	<?php if ( bbp_is_topic_tag() ) bbp_topic_tag_description(); ?>
    
    	<?php do_action( 'bbp_template_before_topics_index' ); ?>
    
    	<?php if ( bbp_has_topics() ) : ?>
    
    		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    		<?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    
    		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    	<?php else : ?>
    
    		<?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    
    	<?php endif; ?>
    
    	<?php do_action( 'bbp_template_after_topics_index' ); ?>
    
    </div>
    

    So this obviously does not go into css, so do you know where inside my child theme should I put the content-archive-topic.php code?

    #149229
    Robin W
    Moderator

    bbpress will use the default page template for the main index rather than the specific page template set in the page – so your setting in the forum page won’t apply.

    There are several ways around this, but as your plugin is a paid one, I can’t see the code to recommend the best solution.

    So first off I’d post a query onto their support site

    Outstanding Support

    they probably have come across bbpress before and will know the answer. You could tell them that bbpress uses ‘is_bbpress()’ to see if it is a bbpress page, that might help them.

    #149226
    Herophantom
    Participant

    Hello,
    So I just started using bbpress over the weekend and so far I’m really liking it. There is only one issue I’m having that I can’t seem to figure out. I am using this plugin:

    Custom Sidebars Pro


    to allow me the function of different sidebars for different pages. It has worked perfectly for 90% of the forums pages except for the top level forum page. That is the only one that I can’t seem to get to use a sidebar other then the default one. At the moment, what I have done is manually made a page with the same slug as the top level forum page, left it blank except for the option that this other plugin enables to change the sidebars. Have a look at it here:
    http://www.mythechllc.com/forums
    if you look at the public forums page, you will see the side bar is what I want it to be, but if you look at the top level forums page, it reverts back to the default.

    surachar
    Participant

    Hi. A couple of updates ago, our Site-Wide Forum began delivering new topic notices and notices to the site admin/s erratically. I have been trying to track down the cause ever since. Our host helped me find undelivered email and we noticed an incorrect listing of the site address (see header below). Will you please tell me how I can correct this, and will you please address this in your next update? The site notifications and BuddyPress Forum notifications seem to be going out fine. Thank you.

    Sincerely,

    Sura (Webmaster, not a developer – so please explain things 🙂

    soi-seattle-kinship.org
    WP 3.9.1
    Dandelion Theme w/child theme: Sufi Order International v2
    bbPress 2.5.4-5380
    BuddyPress 2.0.1
    Easy WP SMTP 1.0.9
    —-
    from: SOI-Seattle Kinship <mail@soi-seattle-kinship.org>
    to: noreply@oi-seattle-kinship.org
    date: Wed, Jul 16, 2014 at 4:21 PM
    subject: [SOI-Seattle Kinship] Testing New Notification Plug-in #1
    signed-by: soi-seattle-kinship.org

    #149224
    kimberlyywp
    Participant

    I have a site setup using buddypress and bbpress forums. There are multiple forums that are all private-only visible to users logged in. I tried creating a hidden user group with a hidden forum attached to it. It ended up making all the other forum topics disappear to regular (subscriber/participant) users. Admin could see them all though. I end up deleting the user groups and unchecking that functionality but it doesn’t reset itself and I have to restore the site to a previous version.

    Why is it doing this? I would like to have a couple user groups that will be either private or hidden and forums linked to them. Some people will be on one or the other and some people may be in both. I also will have forums that are private and only visible to users that are logged in. Any help will be appreciated!

    Robin W
    Moderator

    1. bbpress plugins add exactly as normal wordpress plugins

    Dashboard>plugins

    Bbpress will try and use your theme, you may want to visit the set up guides

    Step by step guide to setting up a bbPress forum – Part 1

    2. depending on your theme, you should see the ability to add a topic at the end of each forum.

    You can add a ‘topic’ add in your sidebar using the text widget and putting

    <a href="/add-new-topic/">Create a new topic</a>
    

    in the text

    joesegal
    Participant

    Hello,

    I’m using WP 3.9 and BBpress 2.5.4

    1) I see no place to add BBpress plugins or themes inside the wp settings area for Forums.

    2) On my forums there is no “Add Topic” button or form so how do people create new topics inside the forum?

    Please advise/help!

    Thanks
    Joe

    #149220

    In reply to: bbpress SQL Injection

    Echoing what Stephen said above, these issues are not actual issues (with bbPress 1.x or 2.x) and in are in no way responsible for anything that could have happened to your site.

    When something is not installed incorrectly, of course it isn’t going to work correctly. These issues are akin to installing your TV with the screen facing the wall, and complaining that you can’t see it from the couch. 🙂

    If it so happens any security issues are found in any version of bbPress, please do not publicly report them in these forums. Instead, responsibly disclose us:

    https://codex.wordpress.org/FAQ_Security

    We try to be really good about fixing any security issues ASAP.

Viewing 25 results - 19,576 through 19,600 (of 64,534 total)
Skip to toolbar