Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 12,826 through 12,850 (of 64,487 total)
  • Author
    Search Results
  • Robkk
    Moderator

    You can remove the bbPress like button plugin to remove the notice.

    If you do need help with your css changes taking effect I could help you with that.

    DarkDog
    Participant

    I’ve had nothing but problems trying to customize bbpress, so I’m just not going to use it. I WAS going to uninstall it and reinstall it to see if that would make my css changes take effect, but when I deactivated it I got this message any time I tried to visit any page on my site, “bbPress Like Button needs bbPress installed and activated in order to work.” So now I don’t want to reinstall it, I just want to get rid of it all together and be done with it. This has been more of a headache than it should be.

    How do I get that error message to go away and get rid of bbpress? Please help.

    #170052
    BassSpleen
    Participant

    Hello,

    I’m pretty new to wordpress+bbpress (been working with it for a few days now). In the past I have used other forum boards, but since I’m using wordpress now I figured while the hell not try out bbpress ?
    So far I like it, I’m still working things out but I managed to do what i wanted using google when I was hitting a wall.

    Now, what i’d like to do is change bbpress layout from this :
    now
    to something like this :
    then

    Even with some research I don’t know what/how to modify this. I have read the “Layout and functionality – Examples you can use” in the codex (and actually used one to get the forum list to be block instead of inline) but it doesn’t mention this kind of modification.

    My html/css/php knowledge is really basic, and obviously not enough to do this on my own.

    If someone could point me in the right direction I’d gladly appreciate it. Thanks !

    Wordpress version : 4.4
    bbpress version : 2.5.8-5815
    theme used : vantage

    #170049

    In reply to: Forums List

    Robin W
    Moderator
    #170045
    Robkk
    Moderator

    Closing as this is a duplicate. Please do not create duplicates.

    Change default display name from username to firstname

    #170044
    Robkk
    Moderator

    There is no answer from the specialists

    It is the holidays where I am from.

    The currently browsing each post functionality, I am not sure, there is not a plugin that I am aware of that can do this for bbPress specifically or for WordPress custom post types. There are user online plugins that display all users online on the site as an alternative to this. You may need to hire a developer to create this currently browsing functionality for you.

    – bbPress Advanced Statistics
    – WP – useronline

    The images by each forum, follow this topic.

    add a "Featured Image" to a forum

    #170043
    Robkk
    Moderator

    Could be a theme, plugin, or WordPress/bbPress issue. You can try the plugin and theme troubleshooting listed below to see if it is only your currently active theme having the issue present. After the troubleshooting come back with some results.

    Troubleshooting

    #170038
    jenfilgate
    Participant

    I have several forums on one WP website with only registered members added to them. Certain users cannot reply to a post, while everyone else can. All users were set-up at the same time and there are no differences in their profile/forum settings. But when some users try to post, they hit “submit” and nothing happens. Their reply window clears, but their post doesn’t display. They don’t get any error messages. It just doesn’t do anything.

    When I tried to login and post as one of those users, I was able to reply with no problems. But they can’t do it on their end. So there isn’t anything wrong with their user account because it worked for me when I used it.

    Could it simply be an Internet connection issue (but I’m not sure how that is because they can see the page without any problem)? Are there certain browsers or devices that you can’t submit replies from? I’m racking my brains to try to figure out what only particular users can’t seem to post when everyone else can, but it’s happened to more than one person, so I’d like to get to the bottom of it.

    Are there any conflicts with bbPress for operating system, browser, mobile device, etc that could be causing the issue?

    #170034
    Pascal Casier
    Moderator

    What I did at a certain moment was create a new page and use the [bbp-forum-index] shortcode (https://codex.bbpress.org/features/shortcodes/)
    Then in my Appearance/Theme Settings, I have set the homepage to this created page.

    Not sure if this is what you want…

    Pascal.

    #170029
    frank.uray
    Participant

    Hi all

    On my pages I have everywhere a sidebar show on the right side.
    But on my bbPress forums, the sidebar is not show 🙁
    How can I set this up ?

    Thanks and best regards
    Frank

    #170026
    dsardone
    Participant

    Wordpress Version 4.4
    bbpress Version 2.5.8

    I am trying to embed just the forum content into my homepage. If I do it with an iframe it displays the header and sidebars which I do not want.

    Is it possible?

    #170025
    Pascal Casier
    Moderator

    Hi,
    I would say to start from https://codex.bbpress.org/themes/ and read the subpages there to see if you get something out of them.
    Pascal.

    #170021
    shazdeh
    Participant

    Hi!

    bbP has bbp_get_topic_close_link function (defined in bbpress/includes/topics/template.php file) that outputs an anchor tag (<a>). However customizing the anchor tag proved difficult so we ended up using a bit of custom code to output the link:

    
    	<?php if( is_singular( 'topic' ) && current_user_can( 'moderate' ) ) : ?>
    		<div class="post-note">
    			<?php
    			$topic = bbp_get_topic( bbp_get_topic_id() );
    			if( bbp_is_topic_open( $topic->ID ) ) {
    				$uri     = add_query_arg( array( 'action' => 'bbp_toggle_topic_close', 'topic_id' => $topic->ID ) );
    				$uri     = wp_nonce_url( $uri, 'close-topic_' . $topic->ID );
    				echo '<a href="' . esc_url( $uri ) . '" class="bbp-topic-close-link button green">Close Thread</a>';
    			}
    			?>
    		</div>
    	<?php endif; ?>
    
    #170020
    moneill18
    Participant

    Hey guys sorry to be the guy and post this I know its probably been post a milllion times. I am using the theme Shore for my Website because its just a theme that I enjoy. Bbpress & Buddypress seem to not want to work with this theme. I need a good forum and social section. I have tested by switching to 2016 themes it worked properly. I also enabled and disabled every plugin, even reverting back to early wordpress versions. Now is there anything I can do in the child theme to customize to get BBpress & buddypress working properly. I have basic knowledge of coding I did some in High School given enough time I can figure it out. Just getting pointed in the right direction would be huge.
    My website http://www.wasdleagues.com/forums/
    Let me know if you need more info I want to make this easy as possible for you.

    Many Thanks
    Mack

    #170017
    Pascal Casier
    Moderator

    Hi,
    Have a look here: https://codex.bbpress.org/bbpress-styling-crib/
    Pascal.

    #170015

    In reply to: Changing search text

    Pascal Casier
    Moderator

    Hi,
    I know that some users switched to https://wordpress.org/plugins/bbpress-search-widget/ because it gives more customization options.
    Pascal.

    #170014

    In reply to: Unable to create forum

    Pascal Casier
    Moderator

    Hi,
    A previous case was solved by deactivating some plugins that interfered (like bbpress – No Admin). It could also be a roles/members plugin. Can you try to deactivate all plugins, see if it works, and then reactivate them one by one ?

    If that didn’t work, try to find a plugin that shows your capabilities to be sure that you are have the rights on the forum.

    Pascal.

    #170008
    Col_Blimp
    Participant

    Private forum, was looking at the css but can’t figure it out as the source goes like this:

    <div id="bbpress-forums">
    
    	
    	<div class="bbp-breadcrumb">

    for the [bbp-forum-index] then further down:

    <div id="bbpress-forums">
    
    	
    	<div class="bbp-breadcrumb">

    for [bbp-topic-index] so hiding <div class=”bbp-breadcrumb”> would hide both?

    #170005
    Pascal Casier
    Moderator

    Hi,
    Is it a public forum ? If so, can you share the URL ?
    There is probably not much that can be done for it from the bbPress side as you use the shortcodes, but maybe in CSS something can be done.
    Pascal.

    #170002
    frank.uray
    Participant

    Hi all

    I have installed the actual version of bbPress.
    I am using Photolux theme and the forums are not readable
    because of the color settings (font, background).
    How can I change color settings of bbPress ?

    Here is how it looks

    Thanks and best regards
    Frank Uray

    #170001
    jessv
    Participant

    When I try to create a forum, I get the message “invalid post type.”

    If I try to access the bbpress settings, it gives the error, “You do not have sufficient permissions to access this page.” I am the site admin, however.

    I have completely removed the plug-in and reinstalled it. I had this problem with the previous version of WordPress and still with 4.4.

    Any input is appreciated!

    #169996
    dayan89
    Participant

    How can I make usernames and avatars in comments lead to bbpress user profiles?

    #169992
    Pascal Casier
    Moderator

    Hi,
    This is a known one. Please refer to the information in the codex: https://codex.bbpress.org/bbp_setup_current_user/was-called-incorrectly/

    Pascal.

    #169979
    Pascal Casier
    Moderator

    Dear all,

    Let’s combine our efforts in the other thread, so for more information or any updates, please refer to https://bbpress.org/forums/topic/oops-that-page-cant-be-found-on-sub-forums/

    Thanks,
    Pascal.

    Emineminero
    Participant

    I’m trying to create a php script to check if each bbpress topic is newer than certain date, so if its true, subscribe the author of that topic to that forum (I only have 1 bbpress forum so there is no need to check the id of that forum).

    This is the code at this point:

    <?php
    
    $args = array(  
        'post_type'        => 'topic',  
    );
    $post = get_posts( $args ); 
    $compare_date = strtotime( "2015-07-14" );
    
    foreach($post->ID as $topic){
        $post_date    = strtotime( $post->post_date );
        $post_author_id = get_post_field( 'post_author', $topic );
        if ( $compare_date < $post_date  ) {        
            bbp_add_user_forum_subscription($post_author_id ,1687); 
        }   
    }
    ?> 

    where 1687 is the id of the forum i want them to suscribe.

    Any idea why is not working?
    Thanks 🙂

Viewing 25 results - 12,826 through 12,850 (of 64,487 total)
Skip to toolbar