Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 17,626 through 17,650 (of 64,535 total)
  • Author
    Search Results
  • izzyian
    Participant

    @robkk,

    Thank you for that here is a little more info because i don’t understand where to place that code:

    What I want to do is add a button ( which I will later style in my css) that will just take the user back to the forum (basically a button that is a breadcrumb).

    I would place all the information here but bbpress reply box is not letting me for some reason. But you can read the information here where I placed it in the wrong section before I asked it here https://buddypress.org/support/topic/how-do-i-add-a-button-in-loops-replies-php-file/

    #155068
    Serch1
    Participant

    Hello Robkk! Thanks a lot for your detailed suggestion. I know this way to delete users from wordpress backend, but I’m looking for the function who does this in order to add a little code to my bbpress frontend 🙂

    Robkk
    Moderator

    you can use any of these hooks to add a button there using a function

    add_action( 'bbp_theme_after_topic_subscription_action' ); 
    
    add_action( 'bbp_theme_before_topic_subscription_action' ); 
    
    add_action( 'bbp_theme_after_topic_favorites_action' ); 
    
    add_action( 'bbp_theme_before_topic_favorites_action' ); 

    more info on using action hooks

    Step by step guide to setting up a bbPress forum – part 4

    #155065
    Robkk
    Moderator

    to enable visual editor install this plugin

    https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/

    to remove the code button use this
    add it to your child themes functions.php or a functionality plugin.

    add_filter( 'bbp_after_get_the_content_parse_args', 'rkk_bbp_edit_quick_editor' );
    function rkk_bbp_edit_quick_editor( $args = array() ) {
    	$args['quicktags']         = array( 'buttons' => 'strong,em,link,block,del,img,ul,ol,li,close' );
    
       return $args;
    }
    #155063
    Robkk
    Moderator

    @korobochkin

    in the trac they are trying to add this feature and at least an option to disable it.

    -started 2010 -last reply 3 months ago
    [bbpress.trac.wordpress.org/ticket/1430]

    if you do not want pingbacks and trackbacks remove any code that is for the comments section when you create a bbpress.php and see if that fixes it.

    #155062
    Robkk
    Moderator

    just delete the user from the WordPress backend

    go to users>all users then search for the user you want to delete

    hover around there avatar and name and you will a bunch of links which one of them says delete

    click that

    then the next screen which is added from bbPress which says

    [] delete all content

    [] attribute all content to: {some username}

    tick delete all content then confirm deletion

    #155061
    Robkk
    Moderator

    try this

    add it anywhere you add custom css

    #bbpress-forums .bbp-body div.bbp-reply-author {
    	margin: -15px 10px 10px;
    	min-height: 100px;
    	padding-left: 80px;
    	position: relative;
    	text-align: left;
    	width: 100%;
    }
    
    #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    	clear: none;
    	display: inline-block;
    	margin-left: 0;
    	word-wrap: break-word;
    }
    
    #bbpress-forums div.bbp-reply-author img.avatar {
    	position: absolute;
    	top: 15px;
    	left: 0;
    	width: 60px;
    	height: auto;
    }
    
    #bbpress-forums div.bbp-reply-author .bbp-author-role {
    	font-size: 12px;
    	font-style: normal;
    }
    
    #bbpress-forums .bbp-body div.bbp-reply-content {
    	clear: both;
    	margin: 10px;
    	padding: 0;
    }
    #155056
    Robkk
    Moderator

    @satanicdogooder

    did you add these too?? it seems like its the only thing your missing when i checked your website.

    /* try to make these two different types of dark shades if you care about having an AB color pattern of replies/topics/forums. */
    
    #bbpress-forums div.odd, 
    #bbpress-forums ul.odd {
    background-color: inherit;
    }
    
    #bbpress-forums div.even, 
    #bbpress-forums ul.even {
    background-color: inherit;
    }
    Serch1
    Participant

    Hello,

    I’ve been looking for a function to delete all user posts and topics from a user ID without luck. What I’m looking for is something like:

    delete_all_posts_and_topics(bbp_get_current_user_id());

    Anyone know if bbPress has a similar function or some clue to how implement it?

    Thank you a lot in advance.

    #155053
    Robkk
    Moderator

    Is it a secret or something?

    no i pretty much told you that its might be just switching the loop-single-topic.php file in your child theme with the original bbpress plugin version if you wanted the smaller avatars.

    if it still looked weird the rest would’ve been just fixing a couple of lines of CSS

    to completely remove them you would need to hand me a link to your site and I’ll give you a little CSS which will allow you to remove them.

    you can also just remove the avatars with PHP

    but just adding this code should work on an original bbPress loop-single-topic template.

    .avatar-14 { display: none !important; }

    #155052

    is the bbpress support is dead ? :/

    Holiday weekend here in the U.S.

    You’re using two versions of software that aren’t labeled as being compatible, so your mileage will likely vary. If you can be more specific and take a bit of initiative to investigate what’s broken, it’s possible someone can help you work this out. That said, your best bet is to use current and compatible versions.

    #155047
    Lorenzo Giacomini
    Participant

    Same problem with last version of WP and bbPress.

    Lorenzo

    #155045
    andriuss
    Participant

    is the bbpress support is dead ? :/

    #155041
    PascalKroeze
    Participant

    Hello,

    I am hosting a wordpress website with bbPress.
    Everything is working great, expect for 1 thing that is pretty annoying.
    How can I use the empty space, since I use 2x site bars, the space is already limited.
    Empty space

    kimstuart
    Participant

    Ah well, I can tell you where I went wrong the first time I tried to do it – I didn’t have any users other than the ones that imported in the site (multisite install), even though I had plenty of users in the network. Once I put the users into the site where I was running the forum import, then it worked properly.
    Probably a simple matter, but not something I intuitively realized since it’s my first time attempting to use bbpress and manage the setup/import/etc by myself.

    #155031
    SatanicDogooder
    Participant

    Hi those codes worked great on the bbpress forum paage! However they did not translate to the topics section. I added them to my child Css.styles.
    http://satanicdogooder.com/forums/topic/a-good-deed-aric-u/#new-post
    Any idea why the background of these pages did not take to the CSS change?
    Thx,
    The DoGooder

    LDP-154
    Participant

    Hello:
    Using the following: (Twenty Thirteen, WP 4.0.1, bbPress 2.5.4, bbPress-Admin Bar 1.7.1, bbPress-Email notifications 0.3, s2Member 141007)

    We can no longer add attachments (pdf docs, and the like) into Forum Topics. Previous attachments into Topics are also no longer available or present in the older Topic posts.

    The Media Library shows the attachments as linked to the Topic post and a separate page for the file when opened with limited settings available in the sidebar when you view the Media Library item (Forum post attachment).

    The Forum Topic post attachment capability was available prior to recent updates of WP and our plug-ins. Also, more strangely, – prior attachments that were no longer viewable in the Topics became viewable on the open web through Google search of our domain name. The path of the files were shown as “/wp-contents/uploads/2014” even though the documents were posted/attached in a secure (“Subcriber” login required) Forum. The world could see our file attachments but not our secured users, ironically enough.

    I’m totally confused now with the settings of s2Member and bbPress that will allow secured users to attach files to their Topic posts without them being viewable by the world. The option to attach a file to a Forum Topic post, is in fact, now gone. We did use Forums to post documents to logged in user members to our site under a specific Subject. Is there a better way or am I missing new settings somewhere?

    I appreciate your help or suggestions. Thanks!

    #155025
    andriuss
    Participant

    Hello, I have upgraded WP and the bbpress stoped working… any ideas ? I dont want to migrate to 2.5.4 because where is much changes in my 2.3.2, I tried to install fresh 2.3.2 version but no luck.

    #155024
    RhysPrice2014
    Participant

    I have installed bbpress on my website, but when I click on the forum I have created, it just reloads the homepage and doesn’t do anything. I can give a link as that will reveal my website which is currently under construction, but it is exactly as it sounds pretty much

    #155016
    joop.stringer
    Participant

    I just ran a very simple query over the user table
    Update wpusers set user_nicename = REPLACE( user_nicename , ‘ ‘, ‘-‘ ) ;

    This did the trick for me … It must be possible for bbPress to have the space replaced by a hypen in the function to create the userprofile link …

    CatoLarsen
    Participant

    Hi, quick and simple.

    I have imported our SMF forum to bbPress.
    All 150k posts and replies have been shipped over, all fine, but all posts are in “my” name now.
    I have ticked covert users setting and the users are in the database, but still all posts are shown as being posted in the siteadmin name used for the import.

    I have used the repair settings as well.

    I have never done an import like this before, and not really sure where I go wrong. I have done the import twice, but still comes out with the same.

    I do hope you can be of some assistance.

    Cheers, Cato.

    #154989

    In reply to: mysite.com/forums

    Robin W
    Moderator
    #154987
    Robin W
    Moderator

    ok,

    1. what two plugins did you try that didn’t work?
    2. have you been through https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/
    3. Does it work if you disable s2member – just a test to see if it is a conflict
    4. what permalink are you running – dashboard>settings>permalinks
    5. What bbpress slugs are you running – dashboard>settings>forums

    #154983
    Darren Odden
    Participant

    I have three sites I am merging into one WordPress site (I know, there was not a clear pathway, but now I am correcting it). I have a bbPress forum on one of the sites that I need to migrate into an existing site. I have brought the users over already. Is there a suggested manner I should use to import the forum? the WXR Export does not seem to work properly.

    Thoughts?

Viewing 25 results - 17,626 through 17,650 (of 64,535 total)
Skip to toolbar