Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 7,701 through 7,725 (of 64,411 total)
  • Author
    Search Results
  • #189339
    andrew55
    Participant

    I currently am using this:

    https://kristarella.blog/2013/04/bbpress-forum-icons/

    But for speed and looks, I’m trying to use a “font awesome” icon for the forum icon.

    My plan was to use some css for each forum, and then style the font icons individually.

    I started off with this in stylesheet, but it’s not working:

    ul#bbp-forum-9:before {
    	font-family: FontAwesome;
    	content: '\f058';
    	color: #6190C3;
    	font-size: 30px;
    	padding-right: 10px;
    	margin-left: -15px;
    	position: absolute;
     	left: -13px;
    	margin-top: 1px;
     }

    I’ve tried several variations with no luck.

    Any suggestions on how to get this css to work properly?

    Thanks for any tips.

    #189326
    makingcircuits
    Participant

    Update:

    Sadly I have removed the set up…. because the bbpress topics for posts plugin seems to be too outdated and could have security issues…

    vantuancnc
    Participant

    Hello,
    I have a problem with bbpress, my member after creating a discussion can not edit this topic again! Please support me. Thanks very much.

    #189318

    In reply to: Any French here ? ;-)

    Stephen Edgar
    Keymaster

    Try our docs, they are in English but cover most of what you are asking, I think 😉

    Getting Started

    lilymonsterz
    Participant

    Hello all!

    I’m hoping someone can help me out with this. After a “successful” transfer from Simple:Press to BBPress, I noticed a few things didn’t import quite right. All the posts are not showing up except for the root posts.

    It imported all the users but didn’t assign posts to the proper users so all of them are reading as only one user posting everything. (See image under “Creator” tab of each post)

    I’m sorry if I’m being a noob, but is there any way I can match settings to the old forum?

    #189311
    Robin W
    Moderator

    that’s something that a plugin is adding – what email/bbpress additional plugins are you running?

    I know you are fixed, but this information will help someone else who later has the same problem 🙂

    #189309
    Robin W
    Moderator

    this css should work

    #bbpress-forums div.bbp-topic-content img, #bbpress-forums div.bbp-reply-content img {
    	max-width: 100%;
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    }

    presume your theme has a custom css area you can put this in ?

    #189296
    angeljs
    Participant

    I do have GD bbPress, and I also use image links from my media files, too.

    #189295
    Robin W
    Moderator

    ok, so do you have a plugin adding images (eg GD bbPress Attachments) or how do you do this?

    #189292
    egathernl
    Participant

    Hi,

    I’ve created a custom module for bbpress to combine all new topics and replies in one overview. From there the moderator can comment on all the incoming messages. This works only i’ve one problem. To add a new reply i use the next code:

    reply_data = array('post_parent'=>$post_parent, 'post_content' => $post_content);
    $reply_meta = array('forum_id'=>$post_forum_id, 'topic_id' => $post_topic_id);
    bbp_insert_reply($reply_data,$reply_meta);
    

    When this is a reply on an other reply everything works fine. But when it is a reply on a new topic then the Topic starter ip-adres is changed to the ip-address of the moderator. I can turn some things off in the core function includes/topics/functions.php

    // Update poster IP if not editing
    update_post_meta( $topic_id, '_bbp_author_ip', bbp_current_author_ip(), false );
    

    But that isn’t what I prefer of course.

    Could someone help me out?

    Thanks in advance.

    Niels

    #189288
    adamorigin2
    Participant

    I have looked there but couldn’t find what I was after. I was looking at once bbPress plugin is installed what functionality will it give within the actual editor window to users of the forum. Some things are listed in quicktags ie strong tags that bold words. But what about all the other things not listed in quicktags, emoticons etc. Surely there has to be a complete cheat sheet of what code gives what result.

    Thanks for your time.

    #189282
    Stephen Edgar
    Keymaster
    #189278
    makingcircuits
    Participant

    Thanks!

    just forgot to add, you must click the options as shown in the following screenshot:

    https://makingcircuits.com/wp-content/uploads/2018/01/bbpress-options.png

    #189277
    makingcircuits
    Participant

    Thanks!

    just forgot to add, you must click the options as shown in the following screenshot:

    https://makingcircuits.com/wp-content/uploads/2018/01/bbpress-options.png

    #189276
    kdelsimone
    Participant

    Try adding this to your custom css:

    #bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic {
    background-color: #ffe;
    border: 1px solid #dd6;
    }

    and this to your functions.php:

    function custom_bbp_show_lead_topic( $show_lead ) {
      $show_lead[] = 'true';
      return $show_lead;
    }
    
    add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );
    #189275
    timsilva_
    Participant

    Hi @johnjamesjacoby and team. Like everyone else, I’ve been waiting for the 2.6 release for a few years now. I can see that the last remaining ticket is for the “bump” functions that have been in there for a while.

    I’m just curious, are bump functions uniquely challenging to code? Either way, is there anything that I (or anyone) can do to help get this task finished? I have somewhat arbitrarily been waiting for the 2.6 release to make some changes to my site. I’m contemplating updating to the RC5 release. By the way, where can I find the latest RC download link? I dug around but couldn’t find a copy. The RC5 link here (https://wordpress.org/plugins/bbpress/advanced/) is still broken.

    #189274
    adamorigin2
    Participant

    Bump. Is there a list of available emoticons and other code options available to users of the bbPress forum?

    #189269
    sdeeds
    Participant

    SMF to BBPress – error utf8mb4

    SMF to BBPress – error utf8mb4

    I am getting the same error as this post identifies:

    WordPress database error: [Specified key was too long; max key length is 1000 bytes]
    CREATE TABLE wp_bbp_converter_translator ( meta_id mediumint(8) unsigned not null auto_increment, value_type varchar(25) null, value_id bigint(20) unsigned not null default '0', meta_key varchar(255) null, meta_value varchar(255) null, PRIMARY KEY (meta_id), KEY value_id (value_id), KEY meta_join (meta_key(191), meta_value(191)) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

    But for Vanilla. It looks like an update to the importer is all that it took to fix this,


    @netweb
    , @johnjamesjacoby

    Thoughts?

    Thanks for your time!!

    — sdeeds

    WP Version 4.9.1
    Vanilla Version 2.3.1
    bbPress Version 2.5.14

    #189265
    Robin W
    Moderator

    ok, no idea why this is happening – it could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Then come back

    #189251
    makingcircuits
    Participant

    I have found a way of implementing this, in fact this facility becomes readily accessible once you install and activate the plugin “bbpress topics for posts”.

    here are the procedures to migrate your existing wordpress comments into bbpress forum interface, below each posts 🙂

    install and activate plugins: bbpress, and bbpress topics for posts

    go to settings > Discussions > bbPress Topics for Posts Defaults….now select the forum which you have created under “Create a new bbPress topic in”

    and finally press SAVE at the bottom of the page.

    wait it is not yet over.

    go back again to bbPress Topics for Posts Defaults
    and click on the new option which asks: “apply settings to existing posts”.

    As soon as you do this all your existing wordpress comments will disappear, and you will see a bbpress forum box under each of the posts.

    DON’T PANIC!!!!!!!!!!

    Go to your wordpress dashboard

    click on posts > all posts > tick on the box named “title” just below “Bulk Actions”

    this will select all the posts on that page.

    now select “Edit” and Apply

    a new window will open (we all know about this)…now simply PRESS the “update” button at the right hand side corner of this window.

    Repeat this for each and every page in case you have a small number of posts on each page….or if you want to execute this at once, make sure to first select all the posts on the same pageby going to the screen options and selecting the total number of posts you prefer to include on that page

    BINGO!!!!

    Go and check your posts you will find all your wordpress comments have been transferred into bbpress…

    But will this have any SEO implications? I don’t know…

    #189250
    makingcircuits
    Participant

    I have found a way of implementing this, in fact this facility becomes readily accessible once you install and activate the plugin “bbpress topics for posts”.

    here are the procedures to migrate your existing wordpress comments into bbpress forum interface, below each posts 🙂

    install and activate plugins: bbpress, and bbpress topics for posts

    go to settings > Discussions > bbPress Topics for Posts Defaults….now select the forum which you have created under “Create a new bbPress topic in”

    and finally press SAVE at the bottom of the page.

    wait it is not yet over.

    go back again to bbPress Topics for Posts Defaults
    and click on the new option which asks: “apply settings to existing posts”.

    As soon as you do this all your existing wordpress comments will disappear, and you will see a bbpress forum box under each of the posts.

    DON’T PANIC!!!!!!!!!!

    Go to your wordpress dashboard

    click on posts > all posts > tick on the box named “title” just below “Bulk Actions”

    this will select all the posts on that page.

    now select “Edit” and Apply

    a new window will open (we all know about this)…now simply PRESS the “update” button at the right hand side corner of this window.

    Repeat this for each and every page in case you have a small number of posts on each page….or if you want to execute this at once, make sure to first select all the posts on the same pageby going to the screen options and selecting the total number of posts you prefer to include on that page

    BINGO!!!!

    Go and check your posts you will find all your wordpress comments have been transferred into bbpress…

    But will this have any SEO implications? I don’t know…

    #189249

    Hi,

    I need to add the metatag “noindex” to some group of pages, for example:

    Category Archives
    Tag Archives
    Author Archives
    Date Archives
    Search Pages
    Attachment Pages

    I tried different plugins that should do the trick (yoast and the seo framework) but they don’t.

    I already contacted their support, again with no luck:

    https://wordpress.org/support/topic/meta-robots-noindex-not-appearing/

    https://wordpress.org/support/topic/noindex-on-bbpress-issues/

    So how can i add the noindex metatag to the <head> of these groups of pages?

    I am using BBP 2.5.14, WP 4.9.1 and Forum – A responsive theme for bbPress plugin by Dannci | ThemeForest.

    I already tried to use the basic themes but the issue is still there.

    Thank you,

    the Process

    #189240

    In reply to: Importing data via sql

    Stephen Edgar
    Keymaster

    The source is available via browser at: https://bbpress.trac.wordpress.org/browser/trunk/src/includes/admin/converters

    Or SVN: https://bbpress.svn.wordpress.org/trunk

    Or Git: git://bbpress.git.wordpress.org/

    #189237

    In reply to: Importing data via sql

    Robin W
    Moderator

    The file is :

    /bbpress/includes/admin/converters/Example.php

    so if you go to

    Download

    you can download it to your PC and open the file

    #189228

    In reply to: Recent replies list

    Robin W
    Moderator

    ok, remove the whole line

    <?php echo do_shortcode(‘[bbpress_recent_replies_by_topic show =5]’) ?>

    then add this to your functions

    add_action( 'bbp_template_before_forums_loop', 'call_bbpress_recent_replies_by_topic' ); 
    
    function call_bbpress_recent_replies_by_topic () {
    	echo do_shortcode("[bbpress_recent_replies_by_topic show=5]") ;
    }

    This just hooks to the line after the one you’d added

    <?php do_action( ‘bbp_template_before_forums_loop’ ); ?>

    so saving you having to amend that template.

    This works on my site.

Viewing 25 results - 7,701 through 7,725 (of 64,411 total)
Skip to toolbar