Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 4,501 through 4,525 (of 6,780 total)
  • Author
    Search Results
  • #112998

    In reply to: Remove toast/notice

    SK
    Participant

    Jared, Thanks! I will check this solution out.

    Regarding configurations: I don’t know if 347374 is an actual number or if you use it just to make a point, which I do get. If bbPress included everything in configurations, then there will be way too many configurations, and would delay next releases a lot. That’s fair enough.

    But let’s look at it from the perspective of added value and break from forum convention.

    bbPress is billed as a lightweight forum. Hence, when it breaks from forum convention to make it lighter (have fewer functions), that is at least understandable. e.g.

    – No signatures in core (plugin exists)

    – No icons (e.g. http://www.phpbb.com/community/styles/prosilver/imageset/forum_read_subforum.gif ) by forums and posts showing useful information (ripe for plugin)

    – No emoticons in posts (ripe for plugin)

    – No attachments in posts (ripe for plugin)

    – No “topic started” date in list of topics (e.g. on forums page or topics archive page)

    – No “read count” for topics (ripe for plugin)

    – No forum specific search (plugin exists)

    – No post count for posters

    etc

    However, when bbPress breaks with forum convention to add something without evident added value, that is a bummer. e.g.

    – Freshness instead of Last post in list of topics (e.g. on forums page or topics archive page). I don’t understand the reasoning behind this. bbPress is making an additional calculation, bending over backwards, just to calculate how many seconds, minutes or days have passed since last post. Why? Why not simply display the date-time of last post like most major forum software do? I don’t see the reason and I don’t like it this way, but if it is like this then I assume that there are other bbPress users who do. Hence I say…perhaps this should be configurable.

    – The notification This forum contains 5 topics and 7 replies, and was last updated by some-author 5 days ago. Why? What is the thinking behind this? What purpose does this serve? I mean, on the same page, topics are listed, there is pagination (and total number of topics) above and below the list of topics, the user can see which post is on top and who last updated it, so why is this notification important to have? I don’t get it. But since it’s there, I assume somebody does, and hence I request that it be a configuration.

    – Similarly, I wonder if a lot is achieved performance-wise by not showing the name of OP in lists of topics, considering that date-time of original post is being retrieved anyway.

    – Formatting/styling of original post and replies is different by default on the topic page. From a user perspective, I don’t see why. You don’t have different styling for original post and replies on bbpress.org or wordpress.org What makes you think that everyone else would want it? Perhaps there is not much additional work is being put into it because replies have to be assigned a formatting anyway, and this way bbPress users know that this is possible. But if so, then even if styling of replies has to be defined separately, it should be same as that of original posts by default, and users should be able to see in documentation that it is possible for them to have different styling. If, on the other hand, you have discovered that a large number of bbPress users want to have different styling for original posts and replies, then I say make it configurable.

    – In freshness, the number of days/hours/minutes is linked. How does that make sense? (yes it takes to the last post, but linking hours is odd…phpBB’s approach where they have a tiny icon next to the date-time is better) If it does to a lot of bbPress users, I say make it configurable.

    (Through all this, remember: There aren’t that many bbPress-supporting themes, and most of bbPress users will end up using bbPress with their generic WordPress themes)

    Lots of people use WordPress despite the performance hit (as opposed to say, Drupal) because it is so easy to use and customize without having to do (or even know) any coding. All bbPress users are WordPress users and so there is a similar expectation from bbPress.

    I know it’s not fair to compare bbPress to WordPress, which has so many more developers and contributors, not to mention forum moderators.

    On the other hand, it is a fair expectation, for bbPress is billed as a forum software from the makers of WordPress. If Matt wants this to take on phpBB, vBulletin and SMF, he needs to put some resources behind it, instead of making JJJ toil alone.

    #112995

    In reply to: Remove toast/notice

    If you don’t like what the default theme provides, make your own.

    #43900
    Venkat84
    Member

    Hello,

    Install 2.1 version on few days back and it works good and used my custom theme without any issues.

    But when i saw the Titles in the forums

    its outputs before like…

    Forums – site name

    Forum: (forum name) – site name

    Topic: (topic name) – site name

    1) So what i want is move them to right or complete remove the later two, can some one point what to edit to achieve this.

    2) And want the members to img code so image displays when topic is submitted, how to achieve this, what should i set default user to?

    3) So if i use the admin account to post in forums it uses admin username directly in url, so how to hide this out… so as not to give out the admin username

    #112878

    Don’t worry about defaults.bb-htaccess.php. It’s part of the version of bbPress that you’re using.

    No idea what your ‘data folder’ is, so can’t say for sure if it’s correct or not.

    And no, I can’t really just fix your problem for you. :) You’ll have to do some digging. Searching for something like “apache htaccess redirect” should be all you need to do.

    #112877
    kevindp
    Member

    Thanks, John! Will you provide instructions on changing just that page with an edit to htaccess? My googling is not working out.

    I’ve got 2 htaccess files, both in my /public directory:

    defaults.bb-htaccess.php

    in the bbpress includes folder

    .htaccess

    in a data folder

    Thanks for your help!

    Laughing Cat
    Participant

    I’ve made some progress here:

    [bbpress 2 plugin] – How to change default avatar size? (to match Buddypress)

    but I haven’t come with the right solution yet so far…

    ps – avoid hacking bbp core template files, you should use filters

    #112840
    scotty502
    Member

    Thanks – i did try that – but it made no difference. Or did you mean the style of bbpress theme?

    Edit * I added it to the twentyten (default bbpress theme) and still the problem remains. I am sure its soooo simple but I am not that great at fault finding even with firebug.

    Laughing Cat
    Participant

    ach, just now I thought this would have fixed it

    instead in the single-forum view under the freshness coulumn, I get some last poster pictures sized 14px (default) and some other at full size

    I have no idea why this is happening, and looks very random…

    sigh, I wish this whole thing was easier to accomplish…

    Laughing Cat
    Participant

    I got this solution… which is probably not so clean but it works; previously I had already created a function to retrieve the full width bp avatar in wordpress, now I looked at the bbp code and filtered the function fetching the avatar in replies with that function I had previously created

    function sg_author_avatar($size) {
    global $post;
    if ( function_exists('bp_core_fetch_avatar') ) {
    echo apply_filters( 'bp_post_author_avatar', bp_core_fetch_avatar( array( 'item_id' => $post->post_author, 'type' => 'full', 'height' => $size, 'width' => $size ) ) );
    }
    elseif ( function_exists('get_avatar') ) {
    echo get_avatar(get_the_author_meta('ID'), $size );
    }
    }

    function sg_bp2bb_author_avatar() {
    $author_avatar = sg_author_avatar('150');
    }
    add_filter('bbp_get_reply_author_avatar', 'sg_bp2bb_author_avatar')

    Laughing Cat
    Participant

    this function:

    bbp_reply_author_link( array( ‘sep’ => ”, ‘size’ => ‘150’ ) );

    actually resizes the avatar to the desired size

    HOWEVER, it fetches the buddypress thumbnail avatar – in my case uses the 50px thumbnail and stretches it to 150px, which is ugly

    I want to fetch the 150px (full width buddypress avatar ) and display as it is…

    Laughing Cat
    Participant

    I’ve set in buddypress a full avatar width/height size as 150px (full sized).

    My bbpress 2.x forum installation, however, has set by default 80px forum avatar images

    How can I set the avatar size for the forum threads to be the same as buddypress?

    thank you

    #112729
    Bluealek
    Member

    Ok, I’ll try to be clearer, and ask one question at a time. How exactly should I modify the default theme CSS if I want to have a latest replies list displayed before the forums list, at the root level?

    Please explain in terms “open this file and insert/change that”. I’m still a bit lost understanding what is where.

    If you are using bbPress 2.x, bbPress stuff does not get put in the primary RSS feed by default. If it is then I would check and see if maybe a plugin is screwing something up.

    Laughing Cat
    Participant

    To change BuddyPress avatars use_

    define ( 'BP_AVATAR_THUMB_WIDTH', 50 );
    define ( 'BP_AVATAR_THUMB_HEIGHT', 50 );
    define ( 'BP_AVATAR_FULL_WIDTH', 150 );
    define ( 'BP_AVATAR_FULL_HEIGHT', 150 );

    you can define custom sizes for your BP avatar, replace 50 or 150 with the size in pixel you want

    I’m trying to replace the size of the default bbPress forums avatar from 80 to 150px to match my BP_AVATAR_FULL size… bbPress 2.1 plugin is using 80by80px avatars by default apparently, do you know where to change that value to match 150px?

    #43801
    MaTaX91
    Member

    specifically the closed topic styles, it shows in my chrome web inspector but it’s crossed out to be replaced with the exact code from the default theme that I copied down exactly.

    Even weirder is that all the other css that I’ve added to my theme’s css file work just fine, just not the closed topic styles.

    Any clue what’s causing it?

    I’ve already tried coping the folder/file structure down exactly in my theme folder to the css but still no

    #112687

    Search excludes topics/replies/forums by default – mainly because most people who install bbPress don’t have their search results styled/configured to handle the results correctly.

    There are a few plugins out there that should get you started, however :)

    I’d check out

    https://wordpress.org/extend/plugins/search-bbpress/

    https://wordpress.org/extend/plugins/bbpress-search-widget/

    #106789

    In reply to: Front-page pagination

    The number of posts and topics shown on a page (which results in pagination) is in the Settings > Forums, you should be able to set the number to whatever you think is best.

    I think default is 15 or 30 if I recall.

    #112691
    peter avey
    Member

    Thanks, so i can copy and past style.css into my wordpress theme css file?

    Regards,

    Pete.

    #112690
    kikac_nngk
    Member

    wp-content –> plugins –> bbpress –> bb-themes –> bb-twenty-ten –> style.css

    But i think you need a child theme, if you want to modify it.

    Otherwise with your next bbpress upgrade, your components in the file will be replaced or removed

    #43759
    peter avey
    Member

    Hi Guys,

    This is the first time I’ve used BBPress. I’m looking at using the original twenty ten theme http://cl.ly/1Q1Z3q1i3T091N272u0K on my custom wordpress theme http://cl.ly/1F3f382h3v1X0k0N1s2n

    Does anyone have any ideas?

    Regards,

    Peter Avey

    Havardo
    Member

    I have spent hours looking through new and older posts on related topic and tried different approaches, including using the “Members” and “User Role Editor” plugins. This is related to the WordPress bbPress plugin.

    I understand that changing the forum visibility forth and back is risky, so I have avoided that. I have only a limited amount of other plugins installed.

    I am not going to list all the issues I have had, but instead hope that someone (if any) who has this up and running can reveal the secret.

    Here is what I try to acheive:

    Some forums should only be available to some users. My plan is to have two users, “Forum Participant” and “Forum Customer”. “Forum Participant” is default, and some users will manually be upgraded to “Forum Customers”. Some forums should only be visible to “Forum Customers”.

    Any comments would be highly appreciated.

    #43622
    SethV2
    Member

    I have installed BuddyPress on a new WordPress site because I want to replace my current forum site with something like this one. I installed bbpress from the BuddyPress>Components page and installed the site wide forums plugin. It tells me the most current version is installed anyways. When I go to the “forums” page, I simply have an edit link to create it. I can preview a forum I created, but when I try to move up in the hierarchy to the Home>Forums page, again I am just given an edit button link. I believe the “Forums” page is supposed to automatically created from what I have read on here already. I also tried to reset my permalinks, and that didn’t make a difference. I tried resetting my theme to twentyeleven, the default buddypress theme, and a third theme. I’m guessing I’m just missing a simply step because obviously this plugin works for most everyone else.

    #112582
    ladymeg
    Member

    Okay…we resolved the issue by installing a SMTP plugin for WordPress.

    The default mail() function apparently works fine for the basic WordPress functions but for some reason it wouldn’t work with the bbPress plugin. So we went around it. :)

    #43595
    rhek
    Member

    I am having some problems generating a forum index page.

    Once I created my forums I thought that by adding the url http://cyclistzone.com/vozcycling/forums/ to the menu I would be in business. Going to the url shows a featured article and the bbPress sidebar, not a forum index.

    Since I did not get a forum index I created a new page and named it Forums. I then pasted the shortcode [bbp-forum-index] into the body of the page and nothing changed. The same results were displayed as if I did not have a page. Almost seems like bbPress ignored my page.

    Here is the link to the page…

    http://cyclistzone.com/vozcycling/forums/

    The next thing I did was to create another page and name it “Test Forum.” I inserted the shortcode and this page displayed a forum index for me.

    http://cyclistzone.com/vozcycling/test-forum/

    The problem I am having now is that the slug “test-forum” only relates to this page and not to any of the forum pages because the slug “test-forum” does not exist in the bbPress settings. Those settings use the slug “forums/forum”. If I change the “forums” slug to “test-forum” I end up back to my original problem.

    I would like to leave my slugs defaulted to their original values. I just want a forum index page using the bbPress slugs and have a bbPress sidebar.

    This is probably simple, but I have not figured it out yet, so I hope someone can shed some light on what I am doing wrong.

    Thanks,

    Rhek

    #112020
    rhek
    Member

    Hello,

    To solve my problem I went into my bbpress setting on my network site and changed the forums slug name. That seems to have cleared up the “Possible BuddyPress conflict: Forums page” message on the subsite.

    I would like to leave the bbpress slugs as default on all subsites and was curious if one subsite will now conflict with another subsite or will what I did cause other issues.

    Thanks,

    Rhek

Viewing 25 results - 4,501 through 4,525 (of 6,780 total)
Skip to toolbar