Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 17,301 through 17,325 (of 64,532 total)
  • Author
    Search Results
  • #156125
    Zemi12
    Participant

    Hi,
    I have problem with replies. Text and avatars are smaller than topic (c. 1px). In addition, there is a space at the top. http://bahn.dopravni.net/?topic=pokus

    I’m using:
    WordPress 4.1
    Czech for WordPress
    bbPress 2.5.4
    bbPress Enable TinyMCE Visual Tab
    GD bbPress Tools

    Thanks for help.

    medousa
    Participant

    Hi all!
    I am sorry if this question has been answered in the past. I looked for everywhere, in bbpress and google and did not find anything similar or those I found were not understandable.
    On my forum index there are shown last posters (what members were the last that posted a topic in each forum) but instead, I want to show last topic titles.
    What do I have to do?
    Any help will be appreciated.

    Thank you!

    #156118
    Chad
    Participant

    Yesterday I posted in the troubleshooting forum about some problems I was having with redirects on a new bbpress install. I posted it, and viewed it. It was there. Then, shortly after it disappeared, was deleted.

    So, I reposted it again. I check again today, it’s gone. Why are you mods deleting my thread?

    #156116
    Piani
    Participant

    I have tested bbpress forums in diffrent themes. In Techism and Colorway the “Latest post” and “Latest threads” display the users avatar in the widgets.

    But now I am testing twenty twelve and there is no avatar showing in these widgets.

    Please advice where to activate avatars in the widgets or where the CSS code for this is found.

    #156111

    In reply to: Help for roles

    Sam Rohn
    Participant

    i have not tried it myself, but this plugin says it allows user media uploads (photo & video) & inline posting for bbpress + buddypress

    rtMedia for WordPress, BuddyPress and bbPress –

    https://wordpress.org/plugins/buddypress-media/

    sam

    #156110

    In reply to: Avatar padding issue

    Robkk
    Moderator

    try this CSS

    #bbpress-forums div.bbp-forum-author img.avatar, 
    #bbpress-forums div.bbp-topic-author img.avatar, 
    #bbpress-forums div.bbp-reply-author img.avatar {
    border: none;
    max-width: 130px;
    padding: 0 0 10px 0;
    margin: 12px auto 0 auto;
    float: none;
    }
    #156108
    Jake Hall
    Participant

    Why has this not been documented anywhere?

    That is probably my biggest problem with bbPress right now, documentation is non-existant. You’ve got to crawl through the plugin code to find what you’re after.

    #156107
    Robkk
    Moderator

    i had this kind of layout one day messing around with bbPress templates in my child theme.

    i think its close to this but i havent tested it to make sure.

    its without the permalinks though , i had permalinks before but right now i just breezing through the templates and trying to find them.

    for the forum loop

    <a href"<?php bbp_forum_last_topic_permalink(); ?>"><?php bbp_forum_last_topic_title(); ?></a>

    for the topic loop

    <a href"<?php bbp_topic_last_reply_permalink(); ?>"><?php bbp_topic_last_reply_title(); ?></a>

    EDIT: added permalinks

    #156106
    TTTonWP
    Participant

    Update..

    I have no cache related files/plugins/etc.

    I have disabled all plugins one at a time and none were causing the issue.

    The issue appears to be related to the inFocus_BuddyPress_Child_Theme which has replaced inFocus as a solution – it is not working either.

    bbPress is working fine with WP 2012, 2013, 2014 themes and BusinessPro theme.

    Anyone resolve this issue with inFocus or know how to troubleshoot/customize the theme?

    #156104

    In reply to: Help for roles

    Robkk
    Moderator

    @boertje

    then maybe BuddyPress is more for your needs its not forum software but more of a social hub plugin. it does work with bbPress flawlessly though.

    there are tons of plugins for BuddyPress that allow users to upload media such as pictures, videos, music, and maybe slideshows too.

    the uploading of other types of media can only be achieved in bbPress usally if you have
    the url of the media, well except images from that gd bbpress attachments plugin, but in BuddyPress you could upload it right in the site.

    i would go to BuddyPress support if that might be where you will sway to .

    https://buddypress.org/support/

    #156102

    In reply to: email needed to post

    Robkk
    Moderator

    you just want to keep track of who is posting

    why not just try this https://wordpress.org/plugins/bbpressmoderation/

    then moderate everything in the back-end of WordPress

    unless your trying to gain the email and name for email marketing??

    #156101
    Jake Hall
    Participant

    Can I just say, whilst bbPress is a great SSO solution for those wanting to hook up their WordPress with a forum, it is very difficult to get it going how you like it. There is virtually no decent documentation going over anything except the basics.

    I am trying to achieve something relatively simple, however have had to resort to editing the actual plugin itself in an attempt to get it working how I’d like it to be.

    What I am trying to do, is edit the freshness part of bbPress. What do I mean by that? Well, I am trying to edit the following:

    null

    So what I wanted it to do, was display the actual Topic Title. It makes sense, because as default – what has updated? What thread was last updated without having to drill into the forum?

    I also found it bizarre that the title was added within the title tag of the freshness, really? Can we just have some sort of option to allow us to change how things are layed out, or at least create some documentation on how to actually change this without editing the bbPress plugin files (which is what I have had to resort to…)

    My question is, how can I change what is displayed there? Surely there’s a better way around it that doesn’t involve hacking my way through the plugin files.

    Which bbPress file actually changes this? Like I say, absolutely no documentation on what each file does – it is just guesswork………………

    If I am missing something I apologise, but after looking for countless hours I just decided to edit the plugin source to achieve half of what I wanted – still doesn’t help as I would like to change the location of the author picture and time edited and I am not editing the plugin for those.

    Am I being stupid?

    If anyone would like the most recent topic name within the forum to display on the index, you can edit the Plugin source code directly like so:

    if ( !empty( $time_since ) && !empty( $link_url ) )
    			$anchor = '<a href="' . esc_url( $link_url ) . '" title="' . esc_attr( $title ) . '">' . esc_html( $time_since ) . '</a>';
    		else
    			$anchor = esc_html__( 'No Topics', 'bbpress' );
    
    		return apply_filters( 'bbp_get_forum_freshness_link', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );

    Find that chunk of code within bbpress/includes/forums/template.php and change to the following:

    if ( !empty( $time_since ) && !empty( $link_url ) )
    			$anchor = '<a href="' . esc_url( $link_url ) . '" title="' . esc_attr( $title ) . '">' . esc_html( $title ) . '</a>';
    		else
    			$anchor = esc_html__( 'No Topics', 'bbpress' );
    
    		return apply_filters( 'bbp_get_forum_freshness_link', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );

    All we have done here is changed the $time_since to $title. Now you need to re-add the $time_since variable in there somewhere, which is a pain because you may not want it right after the thread title (like myself…)

    #156093

    Topic: Topics hidden

    in forum Troubleshooting
    Jayavinoth
    Participant

    I created a forum and a topic. When the forum is opened, topic and description are hidden. Please help em to fix it. Thanks

    WP version : 4.1
    BBpress : 2.5.4
    http://www.etechtricks.com/forums/forum/operating-systems/

    #156089

    Topic: Avatar padding issue

    in forum Themes
    Divine_Apex
    Participant

    Hello! I am new to bbpress. I have just made a new site for my clan and I decided to try out WordPress for the first time. Anyway, I’m going to try and keep this short for you guys. So, I have uploaded a theme and right off the bat there was an issue with the padding between the user’s avatar and username display.

    Example:

    View post on imgur.com

    I have plenty of experience with CSS and I’ve been looking through my FTP files to figure out where this issue is occurring but I can’t seem to find it. I would love to get some direction, or possibly a code to add somewhere in my CSS to fix this. Thanks!

    #156087

    In reply to: email needed to post

    melanie bund
    Participant

    HI
    I have my own simple login – not a plugin just a script, the site is for a seal charity and there is an area for the wardens to communicate which is the forum, so they have to login to access that area, but its a generic login, 1 user and pass for all so i need in the forum the form for name and email to keep track of who is posting. I assume the login overrides the anonymous posting so is there a way to add the form despite… in the bbpress functions file add an over-ride?
    thank you
    Melanie

    #156085

    In reply to: No spacing in posts.

    Yolle
    Participant

    Hi!

    Thank you for the quick reply. It still does not work. I hope I am applying the correction right – I put the code into bbpress.css and then disabled my CDN and caching so it wouldn’t interfere.

    The link to one of the posts is: http://www.lolabuland.com/forums/topic/madde-lucy-bc-6-month-sweden-participant/#post-24022 (post 24022). The forum is for subscribed users only however. Can you please let me know your email so I can send you the login info? Thanks.

    #156083

    In reply to: No spacing in posts.

    Robkk
    Moderator

    @yolle

    try adding !important to the end.

    like this

    #bbpress-forums .bbp-topic-content p,
    #bbpress-forums .bbp-reply-content p {
    margin-bottom:10px!important;

    if it still doesnt work post a link to a topic or reply post that should have line breaks.

    #156081
    IbrahimC
    Participant

    Hi all!

    I’ve just completed setting up my forums using the shortcode method (implementing shortcode of forum index on a page). I did this because whenever I tried to access the forum index, I would get a blank page.
    Now that I’m finished the development of the forum, I want to use the original index.

    At the moment, thegamingrpt.com/forums works fine thanks to the shortcode. However, thegamingrpt.com/tgrforums only loads a blank page. I used the ‘tgrforums’ root so that I could implement the shortcode on a page called ‘Forums’.

    Basically, I want the original back because my breadcrumb is showing the original forum root and because my theme has a dedicated sidebar to bbPress.

    Hope all this makes sense.
    Thanks.

    #156080

    In reply to: No spacing in posts.

    Yolle
    Participant

    I have the exact same problem.
    Has anybody found a working solution?
    I tried this code :

    #bbpress-forums .bbp-topic-content p,
    #bbpress-forums .bbp-reply-content p {
    margin-bottom:10px;

    but it doesn’t work.
    Thanks

    #156078
    Robkk
    Moderator

    yes you can.

    its used on bbpress.org , its not in button format but yeah

    first you create a new page called New Topic

    put the shortcode [bbp-topic-form] into that page.

    now to create a button , im just going to show you how to create a link with a background so it basically is a button.

    put the text widget in your sidebar

    and put this html in it.

    <a class="bbp-new-topic-button" href="http://yoursite.com/new-topic" "title="Create A New Topic">Create A New Topic</a>

    and put this CSS wherever you can put custom CSS

    a custom css plugin
    jetpack custom css module
    in the bbpress.css file that you could copy to your child theme.
    in your child themes CSS stylesheet

    a.bbp-new-topic-button {
      color: #fff;
      font-size: 24px;
      background: #222;
      padding: 10px 20px;
      border: solid #222 2px;
      text-decoration: none;
    }
    
    a.bbp-new-topic-button:hover {
      color: #222;
      background: #fff;
    }
    #156076
    Robkk
    Moderator

    @robin-w

    haha 🙂

    only thing i can think of is when i try WAMP i have to activate an apache module to be able to use pretty permalinks with WordPress and bbPress.

    i cant think of any other issues though.

    #156074

    In reply to: email needed to post

    melanie bund
    Participant

    Hi Robkk
    I have it enabled. My problem is you have to be logged in to enter that part of the site, so bbpress must assume that the user has logged in so no email field is visible, so somehow something has to be overridden maybe in the functions.php to show the email field even though the user is logged in as users to have to enter their name and email to post
    thank you
    Melanie

    #156073
    Robin W
    Moderator

    try my plugin

    bbp additional shortcodes

    I think it will fit what you request

    #156072
    Robin W
    Moderator

    @robkk – no evidence myself that bbpress has wamp or mamp issues, but have seen it quoted occasionally by others – probably is a red herring !

    #156065
    yarashicr
    Participant

    I am very new to BBPress deployment. One of my client wants me to fetch Topics or discussions of a particular forum or all forums with in a category and display it on the homepage. The only way I can add it on the home page of my site in the current wordpress theme I use is through a custom widget (“text widget”). Can any one help me with the php code to do the same. Also help me on what I need to do inorder to fetch all topics under a particular category, irrespective of the forums to which they belong.

    Is there a plugin to do the same or an external widget which I need to install in the form of a plugin.?

    If I am not wrong, I assume that the following is the structure of a BBpress forum.
    Category >> Forum (Sub Category) >> Topics (Discussion)
    Eg: Software >> Apple >> A simple topic or discussion on iPhone.

Viewing 25 results - 17,301 through 17,325 (of 64,532 total)
Skip to toolbar