Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 25,601 through 25,625 (of 64,535 total)
  • Author
    Search Results
  • #134409
    Ravi Kasarla
    Participant

    this version not supporting Userid based URLs

    Custom Profile page URL

    #134408
    Stephen Edgar
    Keymaster

    The ‘dev’ branch of Spanish is at 100% translated so give that a try.

    https://translate.wordpress.org/projects/bbpress/dev

    #134406
    Ravi Kasarla
    Participant

    I customized the profile page URL to http://www.domain.com/forums/user/123 (http://www.domain.com/forums/user/user-id) and its worked fine in 2.2.4 version..

    Today i upgraded the bbpress version to 2.3.2 version and did the above customizations for profile URLs but not working.

    Can any one help me on this?

    Thanks in-advance…..

    #134402

    In reply to: Two strange messages

    Stephen Edgar
    Keymaster

    I am not seeing this on your site now.

    I presume you fixed it by changing the parent forums type to ‘category’ so your issue is now fixed?

    The ‘unrestricted HTML’ should typically only be seen by yourself the bbPress ‘keymaster’, standard users will not be able to post ‘unrestricted HTML’.

    #134401

    In reply to: Latex in topics

    Stephen Edgar
    Keymaster

    Take a look at this plugin which supports bbPress Crayon Syntax Highlighter and this blog post Syntax highlighting: LaTeX.

    #134400
    Stephen Edgar
    Keymaster

    It is the only one I know of, if you have issues with the plugin open an issue on the GitHub project issues section https://github.com/jmdodd/bbpress-topic-post-converter/issues

    #134399
    Stephen Edgar
    Keymaster

    It is indeed, just follow the instructions via the docs 🙂

    https://codex.bbpress.org/bbpress-in-your-language/

    Jaycere
    Participant

    Hi there,

    I am running a wordpress spanish community and i would like to install my BBpress in Spanish, i have read it was possible in bbpress 2.0 but i can´t do it in 2.3, anyone has translated it?

    Cheers.

    #134395
    guylabbe
    Participant

    Hi,
    This seems very simple to do but I couldn’t get it working. I want the default bbpress theme but wrapped with my theme.

    I added the CSS file in my theme and I added a forum index shortcode in the main forum page. Right now the forum index renders OK (the forum index is the content, everything is correctly wrapped by my theme, interpreted by page.php I guess).

    But as soon I get to a topic page, it’s the single.php or page.php that is used, without any bbpress template file (no breadcrumbs, etc., there is only the post).

    I don’t want to customize bbpress, just want the bbpress template to appear in my theme content templates. Any way to do this easily? I would like to avoid customize all pages one by one and keep built it theme integrity…

    #134381
    dananourie
    Participant

    Hi,

    I’ve just imported from phpbb to bbpress. That went well. But I noticed something odd about the hierarchy of the forums. If you go to a parent forum, you get the message at the top: This forum is empty. But the child forums are listed below that message as they should be. Why am I getting that message and is there a way to fix it?

    http://sanjoseatheists.com/forum/science-technology/

    Please note above the Science & Technology is the title that the child forums should go under. I don’t want people posting directly to Science & Technology. Posts need to go into the child forums.

    Also, if you scroll down to create a new topic, there is the message Your account has the ability to post unrestricted HTML content. Is this a security concern, and what should I do about it.

    Thank you so much!!!!

    #134378
    limitx3m
    Participant

    @netweb

    I can’t get this to work. I’ve googled but I don’t see much for alternatives.

    Has bbpress already implemented this or is there nothing out there besides this?

    #134377
    IPBri
    Participant

    I wanted to follow up on the end of this. Because the upgrade would never work, the time we spent trying to make this happen and the large amount of spam we received regularly, we decided to completely remove BBPress from our site. Thanks to those who tried to help.

    #134376
    chuckingit
    Participant

    Hi – i just wanted to follow up with a recent workout of success in that David Chandra over at ThemeHybrid.com posted a thread that helped me greatly to get bbPress working 100% beautiful with my Shell child theme thus share as follows in case this helps …

    turns out that not only were my default forum and topics permalinks blown out, but also so were the author and topic tag defaults — meaning if i was in a forum and clicked a forum tag or a forum author, i would get a forum page that did not look like a forum but a generic blog post …

    so i ended up creating four custom child theme bbPress files and placed them in a bbpress sub directory off my child theme root … the four files were archive-forum.php, archive-topic.php, single-user.php, and taxonomy-topic-tag.php … i found that these four files worked if placed in my child theme root or if placed in my child theme bbpress sub folder but thought it best to keep in bbpress sub folder …

    the whole wierd bbPress create a topic form thing went away too given David Chandra’s approach … which was to use replace the child theme shell_get_atomic_template section with the bbp_get_template_part (see his example below) …

    BIG kudos to WP community of forums and those who share … viva the bb’s 🙂 cordially, chuck scott

    ==============
    From this post David Chandra wrote -> http://themehybrid.com/support/topic/shell-bug-with-bbpress-forum-index-page#post-79074

    you can just use bbp_get_template_part to replace shell_get_atomic_template.

    1. create archive-forum.php in child theme,
    2. copy the content of index.php from shell theme to your child theme
    3. change shell_get_atomic_template( ‘content’, true ); with bbp_get_template_part( ‘content’, ‘archive-forum’ );

    if you need to modify the default bbpress template bbpress content-archive-forum.php you can copy the files from wp-content\plugins\bbpress\templates\default\bbpress and add it in your child theme in bbpress folder.

    for example you can add it in your-child-theme/bbpress/content-archive-forum.php, you can copy and files in wp-content\plugins\bbpress\templates\default\bbpress in your child theme if you need to override it and load it using bbp_get_template_part(); function.

    i usually just copy everything to my child theme, but it’s not really future proof, since bbpress tend to delete/add new functions in every release, so full bbpress template override might broke your site. just override the template you need to modify.

    your archive-forum.php in your child theme may be something similar to this:

    
    <?php
    /**
     * bbPress Archive Forum Template
     */
    get_header(); // Loads the header.php template. ?>
    
    	<?php do_atomic( 'before_content' ); // shell_before_content ?>
    
    	<div id="content">
    
    		<?php do_atomic( 'open_content' ); // shell_open_content ?>
    
    		<div class="hfeed">
    
    			<?php do_atomic( 'open_hfeed' ); // shell_open_hfeed ?>
    
    			<?php if (!is_singular() ){ shell_get_atomic_template( 'loop-meta' ); } // atomic context template, in "loop-meta" directory  ?>
    
    			<?php if ( have_posts() ) : ?>
    
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php bbp_get_template_part( 'content', 'archive-forum' ); ?>
    
    				<?php endwhile; ?>
    
    			<?php else : ?>
    
    				<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
    
    			<?php endif; ?>
    
    			<?php do_atomic( 'close_hfeed' ); // shell_close_hfeed ?>
    
    		</div><!-- .hfeed -->
    
    		<?php do_atomic( 'close_content' ); // shell_close_content ?>
    
    		<?php shell_get_atomic_template( 'loop-nav' ); // atomic context loop template, in "loop-nav" directory ?>
    
    	</div><!-- #content -->
    
    	<?php do_atomic( 'after_content' ); // shell_after_content ?>
    
    <?php get_footer(); // Loads the footer.php template. ?>
    
    #134375
    fuseful
    Participant

    LOL – This is BBPress support – You think I am expecting a response this year ?

    I assume like with all BBPress issues I have I will end up hiring a programmer on Freelancer

    I have to say though I love BBPress – Glad I moved to it from vBulletin (sh*t) after years of grief but the main downside is the absolute useless support infrastructure.

    #134374
    Aron Prins
    Participant

    Hey all,

    First off: WP 3.5.1 / bbPress 2.3.2

    I need to categorise forums… E.g:
    We have 4 company forums ( Apple, Coca Cola, BestBuy & Walmart ).

    Apple is an electronics company, therefore belongs in the Electronics Category.
    Coca Cola is a beverage company, therefore belongs in the Food Category
    Etc etc.

    How can I achieve these top level categories for bbPress?
    We ourselves would like to compage the process to Facebook Page creation – you select your type of company ( category ) and then enter your details ( forum name ).

    Thanks in advance everyone 🙂
    Regards,
    Aron

    #134373
    herkules209
    Participant

    Hello,

    I decided to use bbpress for my forum and made a conversion with Vbulletin.
    Everything worked and everything was taken.

    Unfortunately all vowels (umlauts/Germany) are not shown correctly: They are shown as question marks.
    I checked the database and there all is correct (öäüß).

    Does anyone know how I can change this?
    Any idea?

    Thank you in advance for your help.

    #134371
    demo_parthja_123
    Participant

    test

    hiboy
    Participant

    I am unsure which file to edit bbpress header – the title and the breadcrumb

    #134363
    Pippin Williamson
    Participant

    Looks like some of the files didn’t get uploading/installed. The CSS file is missing completely: http://www.svendborgjudo.dk/wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=2.3.2

    Try reinstalling.

    #134362
    #134361
    Nate
    Participant

    Hey guys,
    So I took the advice from @jaredhatch to get the private messaging function and installed BuddyPress. But now I have 2 problems:

    – BP profiles aren’t inheriting the bbPress avatars (i.e. mystery man displays on the profile, while their post-icon-avatar displays their original upload)
    – Edit profile function appears to be gone
    – BP isn’t sending confirmation e-mails

    I’ve since deactivated BuddyPress, but obviously this isn’t as simple as install BP and turn on Private Messaging.

    Any ideas?

    #134356
    HansRuedi
    Participant

    WP 3.5.1, BP 1.7.2 with bbPress 2.3.2

    I would like to hide the forum title (what is in fact the BP group name) under the Forum tab in a BP group. It’s kind of redundant information …

    #134355
    mcfinn
    Participant

    For a group of users I would like to create a set of usernames and passwords.
    I would be happy if someone could either give advice on how to do this or generate the set for me (make an offer)
    Thanks

    WordPress 3.5.1.
    bbPress 1.0.3

    #134353

    Topic: Groups

    in forum Troubleshooting
    ruanot
    Participant

    Hi,

    I am trialing bbpress on a site which is not live.

    I would like to have member access only, and also have forums limited to groups (specifically assigned membership list).

    I cannot seem to do this with bbpress. Any help?

    Using Twenty12 theme. site is hdl-institute.org

    Thank you,

    Ruan

Viewing 25 results - 25,601 through 25,625 (of 64,535 total)
Skip to toolbar